diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index bb886b5f..62232582 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -2,10 +2,53 @@ class HomeController < ApplicationController helper HeaderHelper + def index - @districts = District.all.order(:name) - @schools = School.all.includes([:district]).order(:name) + @districts = districts + @district = district + + @schools = schools + @school = school + @year = year @categories = Category.sorted.map { |category| CategoryPresenter.new(category:) } end + + private + + def districts + District.all.order(:name).map do |district| + [district.name, district.id] + end + end + + def district + return District.first if District.count == 1 + + District.find(params[:district]) if params[:district].present? + end + + def schools + if district.present? + district.schools.order(:name).map do |school| + [school.name, school.id] + end + else + [] + end + end + + def school + School.find(params[:school]) if params[:school].present? + end + + def year + latest_response_rate = ResponseRate.where(school:) + .where('meets_student_threshold = ? or meets_teacher_threshold = ?', true, true) + .joins('inner join academic_years a on response_rates.academic_year_id=a.id') + .order('a.range DESC').first + academic_year = latest_response_rate.academic_year.range if latest_response_rate.present? + + academic_year || AcademicYear.order('range DESC').first.range + end end diff --git a/app/helpers/header_helper.rb b/app/helpers/header_helper.rb index b0a45fcd..e9e5bef5 100644 --- a/app/helpers/header_helper.rb +++ b/app/helpers/header_helper.rb @@ -34,26 +34,6 @@ module HeaderHelper end end - def school_mapper(school) - academic_year = latest_year(school) - { - name: school.name, - district_id: school.district_id, - url: district_school_overview_index_path(school.district, school, - { year: academic_year.range }) - } - end - - def latest_year(school) - latest_response_rate = ResponseRate.where(school:) - .where('meets_student_threshold = ? or meets_teacher_threshold = ?', true, true) - .joins('inner join academic_years a on response_rates.academic_year_id=a.id') - .order('a.range DESC').first - academic_year = latest_response_rate.academic_year if latest_response_rate.present? - - academic_year || AcademicYear.order('range DESC').first - end - def link_weight(path:) active?(path:) ? 'weight-700' : 'weight-400' end diff --git a/app/javascript/application.js b/app/javascript/application.js index 3b1eddd3..4ef74fe8 100644 --- a/app/javascript/application.js +++ b/app/javascript/application.js @@ -9,12 +9,10 @@ import { initializeListenersForNavDropdowns, initializePopovers, } from "./overview"; -import { initializeListenersForHomeDropdowns } from "./home"; import { showEmptyDatasetModal } from "./modal"; document.addEventListener("turbo:load", () => { initializeListenersForNavDropdowns(); - initializeListenersForHomeDropdowns(); initializePopovers(); showEmptyDatasetModal(); }); diff --git a/app/javascript/controllers/form_controller.js b/app/javascript/controllers/form_controller.js new file mode 100644 index 00000000..1eaf90be --- /dev/null +++ b/app/javascript/controllers/form_controller.js @@ -0,0 +1,13 @@ +import { Controller } from "@hotwired/stimulus" +import debounce from "debounce"; + +// Connects to data-controller="form" +export default class extends Controller { + initialize() { + this.submit = debounce(this.submit.bind(this), 300) + } + + submit() { + this.element.requestSubmit(); + } +} diff --git a/app/javascript/controllers/index.js b/app/javascript/controllers/index.js index 6a4079b7..e758a81f 100644 --- a/app/javascript/controllers/index.js +++ b/app/javascript/controllers/index.js @@ -6,3 +6,6 @@ import { application } from "./application" import AnalyzeController from "./analyze_controller.js" application.register("analyze", AnalyzeController) + +import FormController from "./form_controller.js" +application.register("form", FormController) diff --git a/app/javascript/home.js b/app/javascript/home.js deleted file mode 100644 index 4cf80ff0..00000000 --- a/app/javascript/home.js +++ /dev/null @@ -1,49 +0,0 @@ -import 'bootstrap'; - -export function initializeListenersForHomeDropdowns() { - const districtDropdown = document.querySelector("#district-dropdown"); - if (districtDropdown) { - const schoolDropdown = document.querySelector("#school-dropdown"); - districtDropdown.addEventListener("change", (event) => { - const districtId = Number(event.target.value); - const schoolsInDistrict = window.schools.filter( - (school) => school.district_id === districtId - ); - - schoolDropdown.replaceChildren( - ...schoolsInDistrict.map((school) => { - return createOptionForSelect(school.name, school.url, false); - }) - ); - - let optionElem = createOptionForSelect("Select a school", schoolDropdown.firstChild.value, true) - schoolDropdown.insertBefore(optionElem, schoolDropdown.firstChild); - - schoolDropdown.disabled = false; - }); - - schoolDropdown.addEventListener("change", (event) => { - const goButton = document.querySelector('button[data-id="go-to-school"]'); - goButton.disabled = false; - }); - - document - .querySelector('button[data-id="go-to-school"]') - .addEventListener("click", (event) => { - const selectedSchoolURL = schoolDropdown.value; - window.location = selectedSchoolURL; - }); - } -} - -function createOptionForSelect(name, value, selected) { - const optionElem = document.createElement("option"); - optionElem.setAttribute("value", value); - - if (selected === true) { - optionElem.setAttribute("selected", "selected"); - } - const schoolNameNode = document.createTextNode(name); - optionElem.appendChild(schoolNameNode); - return optionElem; -} diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index 69d4e23a..617adf9b 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -2,20 +2,46 @@

School Quality Measures Dashboard

A school quality framework with multiple measures that offers a fair and comprehensive - picture of school performance

+ picture of school performance

- <%= collection_select(:district, :id, @districts, :id, :name, { prompt: 'Select a district', selected: "" }, { id: 'district-dropdown', 'data-id': 'district-dropdown', class: 'form-select' }) %> - + <%= form_with(url: welcome_path, method: :get, + data: { + turbo_frame: "schools", + turbo_action: "advance", + controller: "form", + action: "input->form#submit" + }) do |f| %> + + <%= turbo_frame_tag "schools" do %> +
+ <% if District.count > 1 %> +
+ <%= f.select :district, @districts, + {include_blank: "Select a District", selected: params[:district] } , {id: "district-dropdown", class: "form-select", hidden: @districts.count == 1} %> +
+ <% end %> + +
+ <%= f.select :school, @schools, + {include_blank: "Select a School", selected: params[:school]}, { id: "school-dropdown", class: "form-select mx-3"} if @schools %> +
+ + <% if @school.present? %> + <%= link_to "Go", district_school_overview_index_path(@district, @school, {year: @year} ), class: "mx-4 btn btn-secondary" , data: {turbo_frame: "_top"} %> + <% else %> + <%= button_to "Go", "/", class: "mx-4 btn btn-secondary" , data: {turbo_frame: "_top"}, disabled: true %> + <% end %> + +
+ <% end %> + <% end %> -
@@ -30,8 +56,8 @@

The School Quality Measures Framework aims to describe the full measure of what makes a good - school. The three outer categories are essential inputs to school quality that influence the center two key - outcomes.

+ school. The three outer categories are essential inputs to school quality that influence the center two key + outcomes.

School Quality Measures Framework

diff --git a/app/views/layouts/home.html.erb b/app/views/layouts/home.html.erb index c2e0c9ef..e45b0fd3 100644 --- a/app/views/layouts/home.html.erb +++ b/app/views/layouts/home.html.erb @@ -27,8 +27,5 @@ <%= render partial: 'layouts/footer' %>
- diff --git a/data/admin_data/dese/5C_1_art_course.csv b/data/admin_data/dese/5C_1_art_course.csv index bcadd87b..3fdd1b4b 100644 --- a/data/admin_data/dese/5C_1_art_course.csv +++ b/data/admin_data/dese/5C_1_art_course.csv @@ -1,4 +1,1781 @@ 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.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 +5.150967741935483,5,a-picp-i1,2021-22,Abington-Beaver Brook Elementary,00010020, 100.0, 100.0, 99.4,"","","","","","","","","","", 99.8, 542 +5.161290322580645,5,a-picp-i1,2021-22,Abington-Woodsdale Elementary School,00010015,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 318 +4.640000000000001,4.64,a-picp-i1,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530,"","","","","", 97.7, 97.1, 100.0, 100.0, 100.0, 95.8, 67.3, 56.7, 89.9, 497 +2.441290322580645,2.44,a-picp-i1,2021-22,Acton-Boxborough-Acton-Boxborough Regional High,06000505,"","","","","","","","","", 68.0, 64.6, 33.4, 27.3, 47.3," 1,710" +5.161290322580645,5,a-picp-i1,2021-22,Acton-Boxborough-Blanchard Memorial School,06000005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 496 +5.161290322580645,5,a-picp-i1,2021-22,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 386 +5.161290322580645,5,a-picp-i1,2021-22,Acton-Boxborough-Luther Conant School,06000030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 394 +5.161290322580645,5,a-picp-i1,2021-22,Acton-Boxborough-McCarthy-Towne School,06000015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 455 +5.161290322580645,5,a-picp-i1,2021-22,Acton-Boxborough-Merriam School,06000010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 465 +5.161290322580645,5,a-picp-i1,2021-22,Acton-Boxborough-Paul P Gates Elementary School,06000025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 371 +4.71741935483871,4.72,a-picp-i1,2021-22,Acton-Boxborough-Raymond J Grey Junior High,06000405,"","","","","","","", 90.7, 92.2,"","","","", 91.4, 841 +5.161290322580645,5,a-picp-i1,2021-22,Acushnet-Acushnet Elementary School,00030025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 485 +1.6464516129032258,1.65,a-picp-i1,2021-22,Acushnet-Albert F Ford Middle School,00030305,"","","","","", 56.3, 45.5, 17.3, 12.1,"","","","", 31.9, 395 +4.201290322580645,4.2,a-picp-i1,2021-22,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305,"","","","","","", 97.8, 97.2, 100.0, 91.9, 68.9, 42.0, 74.3, 81.4, 966 +3.0658064516129033,3.07,a-picp-i1,2021-22,Agawam-Agawam High,00050505,"","","","","","","","","", 72.6, 54.7, 39.8, 70.9, 59.4," 1,034" +4.614193548387097,4.61,a-picp-i1,2021-22,Agawam-Agawam Junior High,00050405,"","","","","","","", 87.3, 91.1,"","","","", 89.4, 592 +5.161290322580645,5,a-picp-i1,2021-22,Agawam-Benjamin J Phelps,00050020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 305 +5.161290322580645,5,a-picp-i1,2021-22,Agawam-Clifford M Granger,00050010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 314 +5.145806451612903,5,a-picp-i1,2021-22,Agawam-James Clark School,00050030, 98.4, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 294 +5.0683870967741935,5,a-picp-i1,2021-22,Agawam-Roberta G. Doering School,00050303,"","","","","", 98.2, 98.4,"", 0.0,"","","","", 98.2, 543 +5.161290322580645,5,a-picp-i1,2021-22,Agawam-Robinson Park,00050025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 282 +5.135483870967742,5,a-picp-i1,2021-22,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 100.0, 100.0, 100.0, 100.0, 100.0, 96.1, 98.6, 99.2, 100.0,"","","","", 99.5, 938 +5.145806451612903,5,a-picp-i1,2021-22,Amesbury-Amesbury Elementary,00070005, 98.4, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 293 +3.943225806451613,3.94,a-picp-i1,2021-22,Amesbury-Amesbury High,00070505,"","","","","","","","","", 66.3, 63.6, 87.5, 87.9, 76.4, 450 +3.2825806451612904,3.28,a-picp-i1,2021-22,Amesbury-Amesbury Innovation High School,00070515,"","","","","","","","","", 41.7, 71.4, 55.6, 81.3, 63.6, 44 +5.0683870967741935,5,a-picp-i1,2021-22,Amesbury-Amesbury Middle,00070013,"","","","","", 97.8, 98.1, 97.7, 99.4,"","","","", 98.2, 624 +5.161290322580645,5,a-picp-i1,2021-22,Amesbury-Charles C Cashman Elementary,00070010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 341 +5.161290322580645,5,a-picp-i1,2021-22,Amherst-Crocker Farm Elementary,00080009, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 299 +5.161290322580645,5,a-picp-i1,2021-22,Amherst-Fort River Elementary,00080020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 341 +4.134193548387096,4.13,a-picp-i1,2021-22,Amherst-Pelham-Amherst Regional High,06050505,"","","","","","","","","", 71.4, 81.3, 83.8, 83.4, 80.1, 869 +4.975483870967742,4.98,a-picp-i1,2021-22,Amherst-Pelham-Amherst Regional Middle School,06050405,"","","","","","","", 96.0, 96.8,"","","","", 96.4, 418 +5.161290322580645,5,a-picp-i1,2021-22,Amherst-Wildwood Elementary,00080050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 334 +3.5406451612903225,3.54,a-picp-i1,2021-22,Andover-Andover High,00090505,"","","","","","","","","", 74.8, 79.3, 50.6, 69.8, 68.6," 1,647" +5.161290322580645,5,a-picp-i1,2021-22,Andover-Andover West Middle,00090310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 536 +5.140645161290323,5,a-picp-i1,2021-22,Andover-Bancroft Elementary,00090003, 100.0, 100.0, 98.8, 100.0, 100.0, 98.9,"","","","","","","", 99.6, 523 +5.083870967741936,5,a-picp-i1,2021-22,Andover-Doherty Middle,00090305,"","","","","","", 98.1, 100.0, 97.3,"","","","", 98.5, 457 +5.161290322580645,5,a-picp-i1,2021-22,Andover-Henry C Sanborn Elementary,00090010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2021-22,Andover-High Plain Elementary,00090004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 534 +5.161290322580645,5,a-picp-i1,2021-22,Andover-South Elementary,00090020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 437 +5.161290322580645,5,a-picp-i1,2021-22,Andover-West Elementary,00090025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 552 +5.078709677419355,5,a-picp-i1,2021-22,Andover-Wood Hill Middle School,00090350,"","","","","","", 97.6, 98.4, 99.2,"","","","", 98.4, 374 +3.6541935483870964,3.65,a-picp-i1,2021-22,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305,"","","","","","", 100.0, 98.1, 98.1, 2.6, 23.2, 60.9, 69.2, 70.8, 575 +2.5135483870967743,2.51,a-picp-i1,2021-22,Arlington-Arlington High,00100505,"","","","","","","","","", 57.0, 53.3, 37.6, 46.6, 48.7," 1,506" +5.161290322580645,5,a-picp-i1,2021-22,Arlington-Brackett,00100010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 444 +5.161290322580645,5,a-picp-i1,2021-22,Arlington-Cyrus E Dallin,00100025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 435 +5.140645161290323,5,a-picp-i1,2021-22,Arlington-Gibbs School,00100305,"","","","","","", 99.6,"","","","","","", 99.6, 458 +5.161290322580645,5,a-picp-i1,2021-22,Arlington-Hardy,00100030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 411 +5.161290322580645,5,a-picp-i1,2021-22,Arlington-John A Bishop,00100005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 398 +5.161290322580645,5,a-picp-i1,2021-22,Arlington-M Norcross Stratton,00100055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.104516129032258,5,a-picp-i1,2021-22,Arlington-Ottoson Middle,00100410,"","","","","","","", 98.5, 99.3,"","","","", 98.9, 923 +5.161290322580645,5,a-picp-i1,2021-22,Arlington-Peirce,00100045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2021-22,Arlington-Thompson,00100050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 511 +5.161290322580645,5,a-picp-i1,2021-22,Ashburnham-Westminster-Briggs Elementary,06100025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 471 +5.161290322580645,5,a-picp-i1,2021-22,Ashburnham-Westminster-Meetinghouse School,06100010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 168 +2.2348387096774194,2.23,a-picp-i1,2021-22,Ashburnham-Westminster-Oakmont Regional High School,06100505,"","","","","","","","","", 40.0, 48.2, 40.1, 45.2, 43.3, 621 +5.150967741935483,5,a-picp-i1,2021-22,Ashburnham-Westminster-Overlook Middle School,06100305,"","","","","","", 100.0, 100.0, 99.5,"","","","", 99.8, 572 +5.161290322580645,5,a-picp-i1,2021-22,Ashburnham-Westminster-Westminster Elementary,06100005,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 380 +2.0748387096774197,2.07,a-picp-i1,2021-22,Ashland-Ashland High,00140505,"","","","","","","","","", 37.2, 31.6, 38.8, 52.5, 40.2, 839 +5.145806451612903,5,a-picp-i1,2021-22,Ashland-Ashland Middle,00140405,"","","","","","", 100.0, 99.2, 100.0,"","","","", 99.7, 714 +5.161290322580645,5,a-picp-i1,2021-22,Ashland-David Mindess,00140015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 651 +5.161290322580645,5,a-picp-i1,2021-22,Ashland-Henry E Warren Elementary,00140010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 661 +1.847741935483871,1.85,a-picp-i1,2021-22,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605,"","","","","","","","","", 46.5, 19.6, 29.1, 47.8, 35.8," 1,121" +5.161290322580645,5,a-picp-i1,2021-22,Athol-Royalston-Athol Community Elementary School,06150020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 526 +2.1729032258064516,2.17,a-picp-i1,2021-22,Athol-Royalston-Athol High,06150505,"","","","","","","","","", 48.3, 40.0, 40.3, 37.3, 42.1, 368 +4.980645161290322,4.98,a-picp-i1,2021-22,Athol-Royalston-Athol-Royalston Middle School,06150305,"","","","","", 96.6, 98.1, 100.0, 92.4,"","","","", 96.5, 458 +5.161290322580645,5,a-picp-i1,2021-22,Athol-Royalston-Royalston Community School,06150050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 138 +4.381935483870968,4.38,a-picp-i1,2021-22,Atlantis Charter (District)-Atlantis Charter School,04910550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 2.5, 63.6, 31.4, 58.1, 84.9," 1,288" +5.161290322580645,5,a-picp-i1,2021-22,Attleboro-A. Irvin Studley Elementary School,00160001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 347 +2.1729032258064516,2.17,a-picp-i1,2021-22,Attleboro-Attleboro Community Academy,00160515,"","","","","","","","","", 66.7, 0.0, 45.5, 42.5, 42.1, 57 +2.9574193548387093,2.96,a-picp-i1,2021-22,Attleboro-Attleboro High,00160505,"","","","","","","","","", 67.4, 62.6, 47.8, 48.7, 57.3," 1,724" +3.8400000000000003,3.84,a-picp-i1,2021-22,Attleboro-Attleboro Virtual Academy,00160705,"","","","","","","","","", 100.0, 83.3, 73.7, 61.5, 74.4, 43 +5.150967741935483,5,a-picp-i1,2021-22,Attleboro-Cyril K. Brennan Middle School,00160315,"","","","","", 99.3, 100.0, 100.0, 100.0,"","","","", 99.8, 623 +5.161290322580645,5,a-picp-i1,2021-22,Attleboro-Hill-Roberts Elementary School,00160045, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 396 +5.161290322580645,5,a-picp-i1,2021-22,Attleboro-Hyman Fine Elementary School,00160040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 456 +5.161290322580645,5,a-picp-i1,2021-22,Attleboro-Peter Thacher Elementary School,00160050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 465 +5.1251612903225805,5,a-picp-i1,2021-22,Attleboro-Robert J. Coelho Middle School,00160305,"","","","","", 99.3, 98.0, 100.0, 100.0,"","","","", 99.3, 608 +5.161290322580645,5,a-picp-i1,2021-22,Attleboro-Thomas Willett Elementary School,00160035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 355 +5.1251612903225805,5,a-picp-i1,2021-22,Attleboro-Wamsutta Middle School,00160320,"","","","","", 98.5, 99.3, 99.3, 100.0,"","","","", 99.3, 583 +4.913548387096775,4.91,a-picp-i1,2021-22,Auburn-Auburn Middle,00170305,"","","","","","", 95.0, 94.4, 96.1,"","","","", 95.2, 648 +3.618064516129032,3.62,a-picp-i1,2021-22,Auburn-Auburn Senior High,00170505,"","","","","","","","","", 53.8, 67.6, 76.6, 80.9, 70.1, 728 +5.161290322580645,5,a-picp-i1,2021-22,Auburn-Bryn Mawr,00170010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 263 +5.161290322580645,5,a-picp-i1,2021-22,Auburn-Pakachoag School,00170025, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 257 +5.089032258064516,5,a-picp-i1,2021-22,Auburn-Swanson Road Intermediate School,00170030,"","","", 99.5, 98.8, 97.7,"","","","","","","", 98.6, 581 +4.077419354838709,4.08,a-picp-i1,2021-22,Avon-Avon Middle High School,00180510,"","","","","","","", 92.6, 91.5, 69.7, 60.4, 82.6, 75.6, 79.0, 314 +5.161290322580645,5,a-picp-i1,2021-22,Avon-Ralph D Butler,00180010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 370 +4.619354838709677,4.62,a-picp-i1,2021-22,Ayer Shirley School District-Ayer Shirley Regional High School,06160505,"","","","","","","","","", 93.3, 94.4, 82.5, 86.6, 89.5, 372 +5.145806451612903,5,a-picp-i1,2021-22,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305,"","","","","","", 99.2, 100.0, 100.0,"","","","", 99.7, 387 +5.161290322580645,5,a-picp-i1,2021-22,Ayer Shirley School District-Lura A. White Elementary School,06160001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 323 +5.161290322580645,5,a-picp-i1,2021-22,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 461 +5.161290322580645,5,a-picp-i1,2021-22,Barnstable-Barnstable Community Innovation School,00200012, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 283 +2.776774193548387,2.78,a-picp-i1,2021-22,Barnstable-Barnstable High,00200505,"","","","","","","","", 70.6, 61.9, 48.5, 45.5, 37.4, 53.8," 1,719" +4.624516129032258,4.62,a-picp-i1,2021-22,Barnstable-Barnstable Intermediate School,00200315,"","","","","","", 94.9, 84.6,"","","","","", 89.6, 723 +5.161290322580645,5,a-picp-i1,2021-22,Barnstable-Barnstable United Elementary School,00200050,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 744 +5.161290322580645,5,a-picp-i1,2021-22,Barnstable-Centerville Elementary,00200010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2021-22,Barnstable-Hyannis West Elementary,00200025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 323 +5.161290322580645,5,a-picp-i1,2021-22,Barnstable-West Barnstable Elementary,00200005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 246 +5.161290322580645,5,a-picp-i1,2021-22,Barnstable-West Villages Elementary School,00200045, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 380 +3.1070967741935487,3.11,a-picp-i1,2021-22,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405,"","","","","","", 100.0, 100.0, 100.0, 95.6, 0.0, 0.0, 0.0, 60.2, 432 +3.6593548387096777,3.66,a-picp-i1,2021-22,Bedford-Bedford High,00230505,"","","","","","","","","", 84.1, 77.3, 54.4, 67.0, 70.9, 843 +4.949677419354839,4.95,a-picp-i1,2021-22,Bedford-John Glenn Middle,00230305,"","","","","","", 97.0, 94.3, 96.5,"","","","", 95.9, 614 +3.6903225806451614,3.69,a-picp-i1,2021-22,Bedford-Lt Elezer Davis,00230010, 0.0, 100.0, 100.0,"","","","","","","","","","", 71.5, 506 +5.161290322580645,5,a-picp-i1,2021-22,Bedford-Lt Job Lane School,00230012,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 601 +3.4374193548387093,3.44,a-picp-i1,2021-22,Belchertown-Belchertown High,00240505,"","","","","","","","","", 69.3, 75.6, 62.6, 58.7, 66.6, 656 +5.161290322580645,5,a-picp-i1,2021-22,Belchertown-Chestnut Hill Community School,00240006,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 480 +5.161290322580645,5,a-picp-i1,2021-22,Belchertown-Cold Spring,00240005, 100.0,"","","","","","","","","","","","", 100.0, 156 +4.934193548387096,4.93,a-picp-i1,2021-22,Belchertown-Jabish Middle School,00240025,"","","","","","","", 95.4, 95.8,"","","","", 95.6, 341 +5.161290322580645,5,a-picp-i1,2021-22,Belchertown-Swift River Elementary,00240018,"", 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 449 +3.6335483870967744,3.63,a-picp-i1,2021-22,Bellingham-Bellingham High School,00250505,"","","","","","","","", 77.0, 74.5, 57.6, 59.7, 82.2, 70.4, 747 +5.1251612903225805,5,a-picp-i1,2021-22,Bellingham-Bellingham Memorial School,00250315,"","","","", 100.0, 100.0, 98.6, 98.8,"","","","","", 99.3, 601 +5.161290322580645,5,a-picp-i1,2021-22,Bellingham-Joseph F DiPietro Elementary School,00250020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 297 +5.161290322580645,5,a-picp-i1,2021-22,Bellingham-Keough Memorial Academy,00250510,"","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 26 +5.161290322580645,5,a-picp-i1,2021-22,Bellingham-Stall Brook,00250025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 238 +3.0038709677419355,3.0,a-picp-i1,2021-22,Belmont-Belmont High,00260505,"","","","","","","","","", 85.4, 50.6, 36.3, 58.4, 58.2," 1,346" +5.161290322580645,5,a-picp-i1,2021-22,Belmont-Daniel Butler,00260015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 331 +5.145806451612903,5,a-picp-i1,2021-22,Belmont-Mary Lee Burbank,00260010, 98.4, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 362 +5.161290322580645,5,a-picp-i1,2021-22,Belmont-Roger E Wellington,00260035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 485 +5.161290322580645,5,a-picp-i1,2021-22,Belmont-Winn Brook,00260005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 428 +5.0683870967741935,5,a-picp-i1,2021-22,Belmont-Winthrop L Chenery Middle,00260305,"","","","","", 99.4, 99.0, 97.4, 97.0,"","","","", 98.2," 1,381" +5.161290322580645,5,a-picp-i1,2021-22,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, 310 +5.156129032258065,5,a-picp-i1,2021-22,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, 99.0, 100.0, 100.0,"","","","", 99.9, 820 +5.1251612903225805,5,a-picp-i1,2021-22,Berkley-Berkley Community School,00270010, 100.0, 100.0, 97.8, 98.9, 100.0,"","","","","","","","", 99.3, 410 +5.150967741935483,5,a-picp-i1,2021-22,Berkley-Berkley Middle School,00270305,"","","","","", 99.0, 100.0, 100.0, 100.0,"","","","", 99.8, 401 +4.748387096774193,4.75,a-picp-i1,2021-22,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305,"","","","","","", 100.0, 97.1, 100.0, 100.0, 92.7, 85.7, 48.7, 92.0, 373 +3.5045161290322584,3.5,a-picp-i1,2021-22,Berkshire Hills-Monument Mt Regional High,06180505,"","","","","","","","","", 73.9, 75.0, 61.7, 61.5, 67.9, 508 +5.161290322580645,5,a-picp-i1,2021-22,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 307 +5.058064516129032,5,a-picp-i1,2021-22,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310,"","","","","", 98.6, 98.9, 98.9, 96.1,"","","","", 98.0, 355 +5.161290322580645,5,a-picp-i1,2021-22,Berlin-Boylston-Berlin Memorial School,06200005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 186 +5.161290322580645,5,a-picp-i1,2021-22,Berlin-Boylston-Boylston Elementary School,06200010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 275 +3.8967741935483873,3.9,a-picp-i1,2021-22,Berlin-Boylston-Tahanto Regional High,06200505,"","","","","","", 97.6, 96.1, 86.8, 66.2, 39.0, 61.9, 75.3, 75.5, 535 +5.161290322580645,5,a-picp-i1,2021-22,Beverly-Ayers/Ryal Side School,00300055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 389 +3.8967741935483873,3.9,a-picp-i1,2021-22,Beverly-Beverly High,00300505,"","","","","","","","","", 78.8, 83.1, 75.1, 65.8, 75.5," 1,299" +4.95483870967742,4.95,a-picp-i1,2021-22,Beverly-Beverly Middle School,00300305,"","","","","", 94.8, 95.1, 97.3, 96.8,"","","","", 96.0," 1,440" +5.161290322580645,5,a-picp-i1,2021-22,Beverly-Centerville Elementary,00300010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 293 +5.161290322580645,5,a-picp-i1,2021-22,Beverly-Cove Elementary,00300015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 420 +5.161290322580645,5,a-picp-i1,2021-22,Beverly-Hannah Elementary,00300033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 337 +5.161290322580645,5,a-picp-i1,2021-22,Beverly-North Beverly Elementary,00300040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 350 +3.618064516129032,3.62,a-picp-i1,2021-22,Billerica-Billerica Memorial High School,00310505,"","","","","","","","", 70.4, 79.5, 65.9, 51.6, 80.8, 70.1," 1,543" +5.161290322580645,5,a-picp-i1,2021-22,Billerica-Frederick J Dutile,00310007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 259 +5.145806451612903,5,a-picp-i1,2021-22,Billerica-Hajjar Elementary,00310026, 100.0, 98.9, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 383 +5.161290322580645,5,a-picp-i1,2021-22,Billerica-John F Kennedy,00310012, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 317 +4.949677419354839,4.95,a-picp-i1,2021-22,Billerica-Locke Middle,00310310,"","","","","", 95.7, 95.5, 96.5,"","","","","", 95.9, 532 +5.042580645161291,5,a-picp-i1,2021-22,Billerica-Marshall Middle School,00310305,"","","","","", 97.4, 99.5, 96.1,"","","","","", 97.7, 608 +5.150967741935483,5,a-picp-i1,2021-22,Billerica-Parker,00310015, 100.0, 100.0, 98.8, 100.0, 100.0,"","","","","","","","", 99.8, 408 +5.161290322580645,5,a-picp-i1,2021-22,Billerica-Thomas Ditson,00310005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 524 +1.9406451612903226,1.94,a-picp-i1,2021-22,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605,"","","","","","","","","", 20.2, 27.3, 39.6, 64.8, 37.6," 1,225" +5.161290322580645,5,a-picp-i1,2021-22,Blackstone-Millville-A F Maloney,06220015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 341 +3.8606451612903223,3.86,a-picp-i1,2021-22,Blackstone-Millville-Blackstone Millville RHS,06220505,"","","","","","","","","", 72.5, 71.9, 77.2, 77.7, 74.8, 409 +4.170322580645161,4.17,a-picp-i1,2021-22,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405,"","","","","","", 80.8, 72.4, 87.8,"","","","", 80.8, 406 +5.161290322580645,5,a-picp-i1,2021-22,Blackstone-Millville-John F Kennedy Elementary,06220008,"","", 100.0,"","","","","","","","","","", 100.0, 101 +5.161290322580645,5,a-picp-i1,2021-22,Blackstone-Millville-Millville Elementary,06220010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 197 +0.9961290322580646,1,a-picp-i1,2021-22,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605,"","","","","","","","","", 10.6, 12.1, 9.4, 47.6, 19.3, 907 +4.433548387096774,4.43,a-picp-i1,2021-22,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305,"","","","","", 100.0, 100.0, 98.9, 99.0, 94.8, 97.5, 33.8, 53.0, 85.9, 715 +0.2993548387096774,1,a-picp-i1,2021-22,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505,"","","","","","","","","", 8.7, 9.7, 0.0, 5.0, 5.8, 417 +3.8658064516129036,3.87,a-picp-i1,2021-22,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305,"","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 29.2, 8.2, 74.9, 450 +3.055483870967742,3.06,a-picp-i1,2021-22,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305,"","","","","","", 96.6, 95.9, 99.1, 8.2, 45.8, 20.8, 50.0, 59.2, 679 +5.094193548387097,5,a-picp-i1,2021-22,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 97.7, 99.2, 100.0, 97.2, 99.2, 98.0, 100.0,"","","","","","", 98.7, 833 +5.021935483870967,5,a-picp-i1,2021-22,Boston-Adams Elementary School,00350302, 100.0, 100.0, 100.0, 100.0, 93.5, 100.0, 84.6,"","","","","","", 97.3, 224 +4.763870967741935,4.76,a-picp-i1,2021-22,Boston-Alighieri Dante Montessori School,00350066, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 92.3, 78 +1.9974193548387098,2.0,a-picp-i1,2021-22,Boston-Another Course To College,00350541,"","","","","","","","","", 89.4, 12.3, 3.4, 45.8, 38.7, 248 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Baldwin Early Learning Pilot Academy,00350003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 68 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Bates Elementary School,00350278, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 198 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Beethoven Elementary School,00350021, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 225 +5.145806451612903,5,a-picp-i1,2021-22,Boston-Blackstone Elementary School,00350390, 100.0, 100.0, 100.0, 100.0, 98.6, 100.0,"","","","","","","", 99.7, 396 +0.0,1,a-picp-i1,2021-22,Boston-Boston Adult Tech Academy,00350548,"","","","","","","","","","","", 0.0, 0.0, 0.0, 154 +5.063225806451612,5,a-picp-i1,2021-22,Boston-Boston Arts Academy,00350546,"","","","","","","","","", 100.0, 100.0, 94.9, 97.4, 98.1, 474 +0.16,1,a-picp-i1,2021-22,Boston-Boston Collaborative High School,00350755,"","","","","","","","","", 0.0, 20.0, 0.0, 2.5, 3.1, 65 +2.47741935483871,2.48,a-picp-i1,2021-22,Boston-Boston Community Leadership Academy,00350558,"","","","","","","", 32.8, 51.1, 36.0, 56.7, 58.9, 47.1, 48.0, 636 +1.7548387096774194,1.75,a-picp-i1,2021-22,Boston-Boston International High School & Newcomers Academy,00350507,"","","","","","","","","", 34.6, 31.7, 38.4, 31.9, 34.0, 524 +1.6464516129032258,1.65,a-picp-i1,2021-22,Boston-Boston Latin Academy,00350545,"","","","","","","", 96.7, 9.2, 14.8, 8.8, 18.1, 49.2, 31.9," 1,656" +3.2877419354838713,3.29,a-picp-i1,2021-22,Boston-Boston Latin School,00350560,"","","","","","","", 100.0, 98.2, 38.3, 42.9, 43.8, 63.3, 63.7," 2,375" +5.12,5,a-picp-i1,2021-22,Boston-Boston Teachers Union K-8 Pilot,00350012, 100.0, 100.0, 96.2, 95.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.2, 265 +4.433548387096774,4.43,a-picp-i1,2021-22,Boston-Bradley Elementary School,00350215, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 85.9, 255 +3.514838709677419,3.51,a-picp-i1,2021-22,Boston-Brighton High School,00350505,"","","","","","","","","", 78.1, 60.4, 73.8, 57.9, 68.1, 454 +0.4696774193548387,1,a-picp-i1,2021-22,Boston-Burke High School,00350525,"","","","","","","","","", 0.0, 1.3, 34.5, 0.0, 9.1, 329 +0.0,1,a-picp-i1,2021-22,Boston-Carter School,00350036,"","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16 +4.701935483870967,4.7,a-picp-i1,2021-22,Boston-Channing Elementary School,00350360, 100.0, 100.0, 96.7, 100.0, 100.0, 100.0, 0.0,"","","","","","", 91.1, 158 +1.3883870967741936,1.39,a-picp-i1,2021-22,Boston-Charlestown High School,00350515,"","","","","","","", 80.0, 66.7, 25.9, 8.8, 22.0, 19.5, 26.9, 757 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Chittick Elementary School,00350154, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 176 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Clap Elementary School,00350298, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 102 +1.3935483870967742,1.39,a-picp-i1,2021-22,Boston-Community Academy,00350518,"","","","","","","","","", 37.5, 50.0, 16.7, 23.1, 27.0, 37 +0.9341935483870969,1,a-picp-i1,2021-22,Boston-Community Academy of Science and Health,00350581,"","","","","","","","","", 28.9, 9.6, 18.4, 13.9, 18.1, 304 +4.242580645161291,4.24,a-picp-i1,2021-22,Boston-Condon K-8 School,00350146, 98.1, 98.4, 100.0, 100.0, 100.0, 100.0, 100.0, 37.2, 38.6,"","","","", 82.2, 647 +3.6129032258064515,3.61,a-picp-i1,2021-22,Boston-Conley Elementary School,00350122, 100.0, 100.0, 100.0, 92.9, 100.0, 100.0, 0.0,"","","","","","", 70.0, 160 +4.258064516129032,4.26,a-picp-i1,2021-22,Boston-Curley K-8 School,00350020, 96.6, 96.2, 93.0, 89.1, 95.0, 89.8, 67.5, 65.7, 52.1,"","","","", 82.5, 824 +2.338064516129032,2.34,a-picp-i1,2021-22,Boston-Dearborn 6-12 STEM Academy,00350074,"","","","","","", 81.7, 55.1, 96.7, 0.0, 0.0, 30.2, 53.6, 45.3, 576 +4.769032258064517,4.77,a-picp-i1,2021-22,Boston-Dever Elementary School,00350268, 100.0, 100.0, 100.0, 100.0, 100.0, 98.4, 21.9,"","","","","","", 92.4, 341 +5.161290322580645,5,a-picp-i1,2021-22,Boston-East Boston Early Education Center,00350009, 100.0, 100.0,"","","","","","","","","","","", 100.0, 97 +1.5793548387096774,1.58,a-picp-i1,2021-22,Boston-East Boston High School,00350530,"","","","","","","", 0.0,"", 2.5, 17.6, 51.4, 61.4, 30.6," 1,178" +3.938064516129032,3.94,a-picp-i1,2021-22,Boston-Edison K-8 School,00350375, 94.9, 97.9, 100.0, 100.0, 100.0, 94.4, 0.0, 43.4, 42.2,"","","","", 76.3, 486 +3.979354838709677,3.98,a-picp-i1,2021-22,Boston-Eliot K-8 Innovation School,00350096, 100.0, 98.8, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0,"","","","", 77.1, 667 +3.623225806451613,3.62,a-picp-i1,2021-22,Boston-Ellis Elementary School,00350072, 100.0, 100.0, 97.7, 100.0, 26.4, 4.9,"","","","","","","", 70.2, 265 +5.12,5,a-picp-i1,2021-22,Boston-Ellison-Parks Early Education School,00350008, 97.3, 100.0, 100.0, 100.0,"","","","","","","","","", 99.2, 129 +3.1896774193548385,3.19,a-picp-i1,2021-22,Boston-English High School,00350535,"","","","","","","","","", 66.4, 55.3, 59.7, 64.9, 61.8, 545 +4.459354838709678,4.46,a-picp-i1,2021-22,Boston-Everett Elementary School,00350088, 100.0, 100.0, 100.0, 97.4, 100.0, 100.0, 0.0,"","","","","","", 86.4, 264 +1.904516129032258,1.9,a-picp-i1,2021-22,Boston-Excel High School,00350522,"","","","","","","","","", 42.7, 17.0, 24.0, 59.8, 36.9, 420 +2.415483870967742,2.42,a-picp-i1,2021-22,Boston-Fenway High School,00350540,"","","","","","","","","", 45.1, 76.1, 21.3, 45.3, 46.8, 374 +1.904516129032258,1.9,a-picp-i1,2021-22,Boston-Frederick Pilot Middle School,00350383,"","","","","","", 37.6, 46.3, 29.1,"","","","", 36.9, 382 +2.193548387096774,2.19,a-picp-i1,2021-22,Boston-Gardner Pilot Academy,00350326, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 42.5, 346 +1.0219354838709678,1.02,a-picp-i1,2021-22,Boston-Greater Egleston High School,00350543,"","","","","","","","","", 0.0, 0.0, 7.1, 26.6, 19.8, 91 +3.664516129032258,3.66,a-picp-i1,2021-22,Boston-Greenwood Sarah K-8 School,00350308, 88.4, 100.0, 92.3, 93.3, 92.9, 100.0, 16.0, 18.2, 10.0,"","","","", 71.0, 303 +5.073548387096774,5,a-picp-i1,2021-22,Boston-Grew Elementary School,00350135, 91.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 98.3, 176 +5.109677419354838,5,a-picp-i1,2021-22,Boston-Guild Elementary School,00350062, 100.0, 100.0, 100.0, 100.0, 94.6, 100.0,"","","","","","","", 99.0, 207 +4.361290322580645,4.36,a-picp-i1,2021-22,Boston-Hale Elementary School,00350243, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 84.5, 155 +3.9896774193548388,3.99,a-picp-i1,2021-22,Boston-Haley Pilot School,00350077, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 47.8, 0.0,"","","","", 77.3, 317 +4.5109677419354846,4.51,a-picp-i1,2021-22,Boston-Harvard-Kent Elementary School,00350200, 100.0, 97.7, 70.2, 100.0, 100.0, 100.0, 42.5,"","","","","","", 87.4, 301 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Haynes Early Education Center,00350010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 132 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Henderson K-12 Inclusion School Lower,00350266, 100.0, 100.0,"","","","","","","","","","","", 100.0, 129 +3.8400000000000003,3.84,a-picp-i1,2021-22,Boston-Henderson K-12 Inclusion School Upper,00350426,"","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 22.4, 71.4, 29.3, 74.4, 688 +4.743225806451613,4.74,a-picp-i1,2021-22,Boston-Hennigan K-8 School,00350153, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 91.9, 73.8, 78.3,"","","","", 91.9, 528 +5.161290322580645,5,a-picp-i1,2021-22,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, 369 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Higginson Inclusion K0-2 School,00350015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 92 +5.135483870967742,5,a-picp-i1,2021-22,Boston-Higginson-Lewis K-8 School,00350377,"","","", 96.2, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.5, 193 +3.576774193548387,3.58,a-picp-i1,2021-22,Boston-Holmes Elementary School,00350138, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0,"","","","","","","", 69.3, 228 +5.073548387096774,5,a-picp-i1,2021-22,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, 100.0, 80.0, 100.0, 98.3, 60 +5.145806451612903,5,a-picp-i1,2021-22,Boston-Hurley K-8 School,00350182, 100.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.7, 316 +2.972903225806452,2.97,a-picp-i1,2021-22,Boston-Irving Middle School,00350445,"","","","","","", 65.6, 52.6, 56.4,"","","","", 57.6, 125 +3.029677419354839,3.03,a-picp-i1,2021-22,Boston-Jackson-Mann K-8 School,00350013, 84.0, 16.7, 94.9, 34.2, 57.9, 51.0, 37.5, 84.6, 78.6,"","","","", 58.7, 334 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Kennedy John F Elementary School,00350166, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 312 +5.135483870967742,5,a-picp-i1,2021-22,Boston-Kennedy Patrick J Elementary School,00350264, 100.0, 100.0, 100.0, 97.2, 100.0, 100.0,"","","","","","","", 99.5, 208 +4.335483870967742,4.34,a-picp-i1,2021-22,Boston-Kenny Elementary School,00350328, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 84.0, 306 +3.344516129032258,3.34,a-picp-i1,2021-22,Boston-Kilmer K-8 School,00350190, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0,"","","","", 64.8, 358 +4.139354838709678,4.14,a-picp-i1,2021-22,Boston-King K-8 School,00350376, 98.3, 100.0, 100.0, 100.0, 100.0, 100.0, 46.5, 48.1, 0.0,"","","","", 80.2, 470 +0.0,1,a-picp-i1,2021-22,Boston-Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","", 0.0, 121 +4.438709677419355,4.44,a-picp-i1,2021-22,Boston-Lee K-8 School,00350183, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 60.0, 100.0, 0.0,"","","","", 86.0, 456 +4.645161290322581,4.65,a-picp-i1,2021-22,Boston-Lyndon K-8 School,00350262, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 48.2, 54.8, 100.0,"","","","", 90.0, 579 +1.3935483870967742,1.39,a-picp-i1,2021-22,Boston-Lyon High School,00350655,"","","","","","","","","", 0.0, 0.0, 0.0, 94.4, 27.0, 126 +4.9961290322580645,5.0,a-picp-i1,2021-22,Boston-Lyon K-8 School,00350004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 84.0, 100.0,"","","","", 96.8, 126 +0.4490322580645161,1,a-picp-i1,2021-22,Boston-Madison Park Technical Vocational High School,00350537,"","","","","","","","","", 0.0, 12.7, 11.7, 12.7, 8.7," 1,039" +5.161290322580645,5,a-picp-i1,2021-22,Boston-Manning Elementary School,00350184, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 132 +4.072258064516129,4.07,a-picp-i1,2021-22,Boston-Margarita Muniz Academy,00350549,"","","","","","","","","", 86.8, 66.7,"", 84.9, 78.9, 142 +4.72258064516129,4.72,a-picp-i1,2021-22,Boston-Mario Umana Academy,00350656, 98.0, 100.0, 100.0, 98.3, 100.0, 100.0, 55.4, 62.2, 98.9,"","","","", 91.5, 667 +3.370322580645161,3.37,a-picp-i1,2021-22,Boston-Mason Elementary School,00350304, 100.0, 100.0, 96.7, 0.0, 100.0, 0.0,"","","","","","","", 65.3, 170 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Mather Elementary School,00350227, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 424 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Mattahunt Elementary School,00350016, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 340 +4.949677419354839,4.95,a-picp-i1,2021-22,Boston-McKay K-8 School,00350080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.4, 100.0, 74.0,"","","","", 95.9, 657 +4.949677419354839,4.95,a-picp-i1,2021-22,Boston-McKinley Schools,00350363,"","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 93.5, 100.0, 76.0, 95.9, 193 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Mendell Elementary School,00350100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 240 +3.096774193548387,3.1,a-picp-i1,2021-22,Boston-Mildred Avenue K-8 School,00350378, 43.8, 100.0, 100.0, 93.6, 95.3, 75.0, 20.4, 28.0, 41.2,"","","","", 60.0, 608 +3.6541935483870964,3.65,a-picp-i1,2021-22,Boston-Mission Hill K-8 School,00350382, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0,"","","","", 70.8, 178 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Mozart Elementary School,00350237, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 133 +3.499354838709677,3.5,a-picp-i1,2021-22,Boston-Murphy K-8 School,00350240, 95.2, 98.5, 98.7, 96.6, 100.0, 2.5, 97.7, 1.4, 32.6,"","","","", 67.8, 804 +2.3174193548387096,2.32,a-picp-i1,2021-22,Boston-New Mission High School,00350542,"","","","","","","", 51.0, 46.8, 65.6, 12.6, 15.0, 93.6, 44.9, 523 +2.838709677419355,2.84,a-picp-i1,2021-22,Boston-O'Bryant School of Math & Science,00350575,"","","","","","","", 94.4, 88.6, 59.4, 31.8, 43.6, 50.4, 55.0," 1,524" +1.2283870967741937,1.23,a-picp-i1,2021-22,Boston-O'Donnell Elementary School,00350141, 51.2, 0.0, 0.0, 0.0, 0.0, 60.0, 64.1,"","","","","","", 23.8, 269 +4.8670967741935485,4.87,a-picp-i1,2021-22,Boston-Ohrenberger School,00350258,"","","", 98.6, 100.0, 100.0, 98.9, 98.7, 67.9,"","","","", 94.3, 489 +5.006451612903226,5,a-picp-i1,2021-22,Boston-Orchard Gardens K-8 School,00350257, 100.0, 100.0, 98.7, 100.0, 100.0, 98.8, 97.6, 96.3, 84.3,"","","","", 97.0, 701 +4.572903225806451,4.57,a-picp-i1,2021-22,Boston-Otis Elementary School,00350156, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 88.6, 351 +4.345806451612903,4.35,a-picp-i1,2021-22,Boston-Perkins Elementary School,00350231, 92.9, 100.0, 100.0, 100.0, 100.0, 97.0, 0.0,"","","","","","", 84.2, 158 +4.443870967741935,4.44,a-picp-i1,2021-22,Boston-Perry K-8 School,00350255, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 86.1, 151 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Philbrick Elementary School,00350172, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 87 +5.145806451612903,5,a-picp-i1,2021-22,Boston-Quincy Elementary School,00350286, 100.0, 100.0, 99.1, 100.0, 99.1, 100.0,"","","","","","","", 99.7, 640 +5.052903225806452,5,a-picp-i1,2021-22,Boston-Quincy Upper School,00350565,"","","","","","", 98.5, 100.0, 100.0, 100.0, 100.0, 80.6, 96.6, 97.9, 527 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Roosevelt K-8 School,00350116, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 360 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Russell Elementary School,00350366, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 313 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Shaw Elementary School,00350014, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 110 +2.183225806451613,2.18,a-picp-i1,2021-22,Boston-Snowden International High School,00350690,"","","","","","","","","", 2.9, 84.1, 67.7, 19.4, 42.3, 466 +5.135483870967742,5,a-picp-i1,2021-22,Boston-Sumner Elementary School,00350052, 100.0, 100.0, 96.9, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 407 +3.664516129032258,3.66,a-picp-i1,2021-22,Boston-Taylor Elementary School,00350054, 100.0, 100.0, 100.0, 65.4, 17.9, 73.7,"","","","","","","", 71.0, 303 +2.565161290322581,2.57,a-picp-i1,2021-22,Boston-TechBoston Academy,00350657,"","","","","","", 57.8, 79.8, 81.3, 57.6, 32.0, 8.5, 44.1, 49.7, 877 +5.130322580645162,5,a-picp-i1,2021-22,Boston-Timilty Middle School,00350485,"","","","","","", 100.0, 100.0, 98.7,"","","","", 99.4, 181 +5.135483870967742,5,a-picp-i1,2021-22,Boston-Tobin K-8 School,00350229, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.7, 98.1,"","","","", 99.5, 370 +3.7419354838709675,3.74,a-picp-i1,2021-22,Boston-Trotter K-8 School,00350370, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 2.5, 0.0, 0.0,"","","","", 72.5, 324 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Tynan Elementary School,00350181, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 180 +5.161290322580645,5,a-picp-i1,2021-22,Boston-UP Academy Holland,00350167, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 585 +5.058064516129032,5,a-picp-i1,2021-22,Boston-Warren-Prescott K-8 School,00350346, 93.2, 95.5, 95.8, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 98.0, 445 +5.161290322580645,5,a-picp-i1,2021-22,Boston-West Zone Early Learning Center,00350006, 100.0, 100.0,"","","","","","","","","","","", 100.0, 45 +5.161290322580645,5,a-picp-i1,2021-22,Boston-Winship Elementary School,00350374, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 219 +4.71741935483871,4.72,a-picp-i1,2021-22,Boston-Winthrop Elementary School,00350180, 100.0, 100.0, 100.0, 97.3, 50.0, 100.0,"","","","","","","", 91.4, 186 +2.838709677419355,2.84,a-picp-i1,2021-22,Boston-Young Achievers K-8 School,00350380, 0.0, 100.0, 100.0, 97.9, 98.6, 98.2, 0.0, 0.0, 0.0,"","","","", 55.0, 491 +3.349677419354839,3.35,a-picp-i1,2021-22,Bourne-Bourne High School,00360505,"","","","","","","","","", 69.8, 64.2, 52.8, 71.7, 64.9, 376 +5.161290322580645,5,a-picp-i1,2021-22,Bourne-Bourne Intermediate School,00360030,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 367 +5.047741935483871,5,a-picp-i1,2021-22,Bourne-Bourne Middle School,00360325,"","","","","","", 100.0, 97.9, 95.5,"","","","", 97.8, 456 +5.145806451612903,5,a-picp-i1,2021-22,Bourne-Bournedale Elementary School,00360005, 99.1, 100.0, 100.0,"","","","","","","","","","", 99.7, 325 +5.161290322580645,5,a-picp-i1,2021-22,Boxford-Harry Lee Cole,00380005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 311 +5.161290322580645,5,a-picp-i1,2021-22,Boxford-Spofford Pond,00380013,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 398 +5.161290322580645,5,a-picp-i1,2021-22,Braintree-Archie T Morrison,00400033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 303 +3.0503225806451613,3.05,a-picp-i1,2021-22,Braintree-Braintree High,00400505,"","","","","","","","","", 37.6, 81.8, 65.6, 54.4, 59.1," 1,648" +5.161290322580645,5,a-picp-i1,2021-22,Braintree-Donald Ross,00400050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 195 +4.763870967741935,4.76,a-picp-i1,2021-22,Braintree-East Middle School,00400305,"","","","","", 84.9, 92.6, 98.7, 93.5,"","","","", 92.3," 1,027" +5.161290322580645,5,a-picp-i1,2021-22,Braintree-Highlands,00400015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 401 +5.161290322580645,5,a-picp-i1,2021-22,Braintree-Hollis,00400005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 309 +5.161290322580645,5,a-picp-i1,2021-22,Braintree-Liberty,00400025,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 356 +4.55741935483871,4.56,a-picp-i1,2021-22,Braintree-Mary E Flaherty School,00400020, 77.8, 85.2, 92.3, 87.1, 92.3,"","","","","","","","", 88.3, 273 +4.975483870967742,4.98,a-picp-i1,2021-22,Braintree-Monatiquot Kindergarten Center,00400009, 96.4,"","","","","","","","","","","","", 96.4, 253 +4.887741935483871,4.89,a-picp-i1,2021-22,Braintree-South Middle School,00400310,"","","","","","", 97.1, 97.8, 89.4,"","","","", 94.7, 543 +5.161290322580645,5,a-picp-i1,2021-22,Brewster-Eddy Elementary,00410010,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 213 +5.161290322580645,5,a-picp-i1,2021-22,Brewster-Stony Brook Elementary,00410005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 197 +5.161290322580645,5,a-picp-i1,2021-22,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, 299 +5.058064516129032,5,a-picp-i1,2021-22,Bridgewater-Raynham-Bridgewater Middle School,06250320,"","","","","","","", 97.9, 98.2,"","","","", 98.0, 510 +0.8877419354838709,1,a-picp-i1,2021-22,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505,"","","","","","","","","", 22.8, 9.8, 12.9, 21.7, 17.2," 1,366" +5.150967741935483,5,a-picp-i1,2021-22,Bridgewater-Raynham-Laliberte Elementary School,06250050,"","", 100.0, 100.0, 99.4,"","","","","","","","", 99.8, 518 +5.161290322580645,5,a-picp-i1,2021-22,Bridgewater-Raynham-Merrill Elementary School,06250020, 100.0, 100.0,"","","","","","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2021-22,Bridgewater-Raynham-Mitchell Elementary School,06250002, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0," 1,059" +5.1251612903225805,5,a-picp-i1,2021-22,Bridgewater-Raynham-Raynham Middle School,06250315,"","","","","", 100.0, 100.0, 98.8, 98.3,"","","","", 99.3, 724 +1.2903225806451613,1.29,a-picp-i1,2021-22,Bridgewater-Raynham-Therapeutic Day School,06250415,"","","","","","","", 0.0, 100.0, 0.0, 0.0, 0.0, 66.7, 25.0, 12 +5.135483870967742,5,a-picp-i1,2021-22,Bridgewater-Raynham-Williams Intermediate School,06250300,"","","","", 100.0, 99.2, 99.2,"","","","","","", 99.5, 751 +4.454193548387097,4.45,a-picp-i1,2021-22,Brimfield-Brimfield Elementary,00430005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 86.3, 249 +0.0,1,a-picp-i1,2021-22,Bristol County Agricultural-Bristol County Agricultural High,09100705,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 502 +0.9083870967741936,1,a-picp-i1,2021-22,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605,"","","","","","","","","", 47.5, 9.4, 5.4, 7.3, 17.6," 1,326" +5.078709677419355,5,a-picp-i1,2021-22,Brockton-Ashfield Middle School,00440421,"","","","","","", 97.4, 100.0, 97.9,"","","","", 98.4, 485 +1.904516129032258,1.9,a-picp-i1,2021-22,Brockton-Brockton Champion High School,00440515,"","","","","","","","","", 48.0, 30.0, 44.4, 23.8, 36.9, 65 +2.735483870967742,2.74,a-picp-i1,2021-22,Brockton-Brockton High,00440505,"","","","","","","","","", 44.1, 52.2, 58.3, 64.2, 53.0," 3,622" +4.23741935483871,4.24,a-picp-i1,2021-22,Brockton-Brockton Virtual Learning Academy,00440705, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 95.2, 89.5, 46.9, 48.1, 64.0, 47.4, 82.1, 296 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Brookfield,00440010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 458 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Downey,00440110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 498 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Dr W Arnone Community School,00440001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 603 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-East Middle School,00440405,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 515 +5.161290322580645,5,a-picp-i1,2021-22,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, 916 +0.24258064516129033,1,a-picp-i1,2021-22,Brockton-Edison Academy,00440520,"","","","","","","","","", 2.6, 6.7, 6.3, 4.5, 4.7, 212 +NA,NA,a-picp-i1,2021-22,Brockton-Frederick Douglass Academy,00440080,"","","","","","","","","","","","","","", 4 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Gilmore Elementary School,00440055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 439 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Hancock,00440045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 465 +4.180645161290323,4.18,a-picp-i1,2021-22,Brockton-Huntington Therapeutic Day School,00440400,"","","","", 100.0, 100.0, 100.0, 42.9, 83.3, 80.0, 77.8, 80.0, 90.9, 81.0, 58 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-John F Kennedy,00440017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 562 +5.016774193548387,5,a-picp-i1,2021-22,Brockton-Joseph F. Plouffe Academy,00440422,"","","","","","", 96.4, 98.7, 96.7,"","","","", 97.2, 725 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Louis F Angelo Elementary,00440065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 769 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Manthala George Jr. School,00440003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 830 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Mary E. Baker School,00440002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 676 +3.9070967741935485,3.91,a-picp-i1,2021-22,Brockton-North Middle School,00440410,"","","","","","", 99.3, 54.7,"","","","","", 75.7, 300 +5.161290322580645,5,a-picp-i1,2021-22,Brockton-Oscar F Raymond,00440078, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 730 +5.032258064516129,5,a-picp-i1,2021-22,Brockton-South Middle School,00440415,"","","","","","", 95.7, 97.5, 99.1,"","","","", 97.5, 565 +5.089032258064516,5,a-picp-i1,2021-22,Brockton-West Middle School,00440420,"","","","","","", 99.0, 97.9, 99.0,"","","","", 98.6, 587 +4.418064516129032,4.42,a-picp-i1,2021-22,Brooke Charter School (District)-Brooke Charter School,04280305, 99.5, 97.4, 98.4, 100.0, 98.4, 99.5, 99.4, 98.9, 100.0, 2.0, 75.2, 4.0, 77.3, 85.6," 2,146" +4.490322580645161,4.49,a-picp-i1,2021-22,Brookfield-Brookfield Elementary,00450005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.6,"","","","","","", 87.0, 262 +3.0038709677419355,3.0,a-picp-i1,2021-22,Brookline-Brookline High,00460505,"","","","","","","","","", 72.0, 61.6, 46.9, 51.1, 58.2," 2,064" +5.161290322580645,5,a-picp-i1,2021-22,Brookline-Edith C Baker,00460005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 645 +5.135483870967742,5,a-picp-i1,2021-22,Brookline-Florida Ruffin Ridley School,00460015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 96.6, 100.0, 98.9,"","","","", 99.5, 814 +5.161290322580645,5,a-picp-i1,2021-22,Brookline-Heath,00460025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 463 +5.161290322580645,5,a-picp-i1,2021-22,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, 483 +5.150967741935483,5,a-picp-i1,2021-22,Brookline-Lawrence,00460030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.4, 100.0,"","","","", 99.8, 611 +5.150967741935483,5,a-picp-i1,2021-22,Brookline-Michael Driscoll,00460020, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2, 100.0, 100.0, 100.0,"","","","", 99.8, 468 +5.156129032258065,5,a-picp-i1,2021-22,Brookline-Pierce,00460040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.9, 100.0,"","","","", 99.9, 731 +5.150967741935483,5,a-picp-i1,2021-22,Brookline-William H Lincoln,00460035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2,"","","","", 99.8, 472 +2.136774193548387,2.14,a-picp-i1,2021-22,Burlington-Burlington High,00480505,"","","","","","","","","", 39.7, 43.3, 31.5, 50.4, 41.4, 911 +5.130322580645162,5,a-picp-i1,2021-22,Burlington-Fox Hill,00480007, 98.8, 100.0, 98.8, 100.0, 98.6, 100.0,"","","","","","","", 99.4, 491 +5.150967741935483,5,a-picp-i1,2021-22,Burlington-Francis Wyman Elementary,00480035, 98.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 521 +5.047741935483871,5,a-picp-i1,2021-22,Burlington-Marshall Simonds Middle,00480303,"","","","","","", 97.2, 97.6, 98.8,"","","","", 97.8, 778 +5.1251612903225805,5,a-picp-i1,2021-22,Burlington-Memorial,00480015, 96.2, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.3, 411 +5.089032258064516,5,a-picp-i1,2021-22,Burlington-Pine Glen Elementary,00480020, 90.2, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 98.6, 277 +5.161290322580645,5,a-picp-i1,2021-22,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.8593548387096774,2.86,a-picp-i1,2021-22,Cambridge-Cambridge Rindge and Latin,00490506,"","","","","","","","","", 64.1, 53.1, 52.8, 50.8, 55.4," 1,855" +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Cambridge Street Upper School,00490305,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 279 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Cambridgeport,00490007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 223 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Fletcher/Maynard Academy,00490090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 210 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Graham and Parks,00490080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Haggerty,00490020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-John M Tobin,00490065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 208 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Kennedy-Longfellow,00490040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 206 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-King Open,00490035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 306 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Maria L. Baldwin,00490005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 304 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Martin Luther King Jr.,00490030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 283 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Morse,00490045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 237 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Peabody,00490050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 268 +5.161290322580645,5,a-picp-i1,2021-22,Cambridge-Putnam Avenue Upper School,00490310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 256 +5.140645161290323,5,a-picp-i1,2021-22,Cambridge-Rindge Avenue Upper School,00490315,"","","","","","", 100.0, 100.0, 99.0,"","","","", 99.6, 267 +5.145806451612903,5,a-picp-i1,2021-22,Cambridge-Vassal Lane Upper School,00490320,"","","","","","", 100.0, 100.0, 98.9,"","","","", 99.7, 290 +3.803870967741936,3.8,a-picp-i1,2021-22,Canton-Canton High,00500505,"","","","","","","","","", 86.4, 77.7, 55.3, 73.8, 73.7, 899 +5.161290322580645,5,a-picp-i1,2021-22,Canton-Dean S Luce,00500020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 466 +5.161290322580645,5,a-picp-i1,2021-22,Canton-John F Kennedy,00500017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 470 +5.161290322580645,5,a-picp-i1,2021-22,Canton-Lt Peter M Hansen,00500012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 530 +5.052903225806452,5,a-picp-i1,2021-22,Canton-Wm H Galvin Middle,00500305,"","","","","","", 99.2, 97.1, 97.2,"","","","", 97.9, 792 +5.12,5,a-picp-i1,2021-22,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530,"","","","","","", 100.0, 98.8, 98.8,"","","","", 99.2, 249 +1.0683870967741935,1.07,a-picp-i1,2021-22,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605,"","","","","","","","","", 38.3, 12.7, 16.6, 12.0, 20.7, 642 +5.145806451612903,5,a-picp-i1,2021-22,Carlisle-Carlisle School,00510025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.6,"","","","", 99.7, 608 +5.156129032258065,5,a-picp-i1,2021-22,Carver-Carver Elementary School,00520015, 100.0, 99.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.9, 731 +3.3187096774193545,3.32,a-picp-i1,2021-22,Carver-Carver Middle/High School,00520405,"","","","","","", 95.9, 94.1, 91.5, 42.4, 38.7, 27.2, 31.4, 64.3, 725 +5.161290322580645,5,a-picp-i1,2021-22,Central Berkshire-Becket Washington School,06350005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 83 +5.161290322580645,5,a-picp-i1,2021-22,Central Berkshire-Craneville,06350025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 430 +5.161290322580645,5,a-picp-i1,2021-22,Central Berkshire-Kittredge,06350035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 120 +4.88258064516129,4.88,a-picp-i1,2021-22,Central Berkshire-Nessacus Regional Middle School,06350305,"","","","","","", 97.2, 93.8, 93.2,"","","","", 94.6, 336 +2.2193548387096773,2.22,a-picp-i1,2021-22,Central Berkshire-Wahconah Regional High,06350505,"","","","","","","","","", 45.9, 44.2, 35.3, 45.7, 43.0, 505 +5.140645161290323,5,a-picp-i1,2021-22,Chelmsford-Byam School,00560030, 98.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.6, 512 +5.161290322580645,5,a-picp-i1,2021-22,Chelmsford-Center Elementary School,00560005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 502 +5.161290322580645,5,a-picp-i1,2021-22,Chelmsford-Charles D Harrington,00560025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 474 +3.0451612903225804,3.05,a-picp-i1,2021-22,Chelmsford-Chelmsford High,00560505,"","","","","","","","","", 67.8, 61.3, 47.0, 59.6, 59.0," 1,356" +4.990967741935484,4.99,a-picp-i1,2021-22,Chelmsford-Col Moses Parker School,00560305,"","","","","", 97.6, 95.4, 98.4, 95.3,"","","","", 96.7, 730 +4.9961290322580645,5.0,a-picp-i1,2021-22,Chelmsford-McCarthy Middle School,00560310,"","","","","", 97.2, 97.0, 95.7, 97.2,"","","","", 96.8, 841 +5.150967741935483,5,a-picp-i1,2021-22,Chelmsford-South Row,00560015, 100.0, 99.1, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 449 +3.783225806451613,3.78,a-picp-i1,2021-22,Chelsea-Chelsea High,00570505,"","","","","","","","","", 76.4, 71.1, 72.0, 72.2, 73.3," 1,534" +0.0,1,a-picp-i1,2021-22,Chelsea-Chelsea Opportunity Academy,00570515,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 68 +2.4103225806451616,2.41,a-picp-i1,2021-22,Chelsea-Chelsea Virtual Learning Academy,00570705,"","","","", 100.0, 100.0, 66.7, 50.0, 50.0,"", 0.0, 0.0, 0.0, 46.7, 15 +5.027096774193549,5,a-picp-i1,2021-22,Chelsea-Clark Avenue School,00570050,"","","","","", 96.6, 97.1, 97.2, 98.5,"","","","", 97.4, 729 +5.161290322580645,5,a-picp-i1,2021-22,Chelsea-Edgar A Hooks Elementary,00570030,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 517 +4.454193548387097,4.45,a-picp-i1,2021-22,Chelsea-Eugene Wright Science and Technology Academy,00570045,"","","","","", 88.0, 90.2, 86.6, 81.6,"","","","", 86.3, 488 +5.161290322580645,5,a-picp-i1,2021-22,Chelsea-Frank M Sokolowski Elementary,00570040,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 495 +5.161290322580645,5,a-picp-i1,2021-22,Chelsea-George F. Kelly Elementary,00570035,"", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 429 +4.9238709677419354,4.92,a-picp-i1,2021-22,Chelsea-Joseph A. Browne School,00570055,"","","","","", 97.5, 93.8, 93.2, 97.2,"","","","", 95.4, 587 +5.161290322580645,5,a-picp-i1,2021-22,Chelsea-Shurtleff Early Childhood,00570003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 643 +5.161290322580645,5,a-picp-i1,2021-22,Chelsea-William A Berkowitz Elementary,00570025,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 447 +5.161290322580645,5,a-picp-i1,2021-22,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 119 +4.913548387096775,4.91,a-picp-i1,2021-22,Chicopee-Barry,00610003, 100.0, 100.0, 100.0, 87.3, 92.3, 94.0,"","","","","","","", 95.2, 355 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Belcher,00610010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 226 +2.436129032258065,2.44,a-picp-i1,2021-22,Chicopee-Bellamy Middle,00610305,"","","","","","", 48.5, 34.3, 57.0,"","","","", 47.2, 816 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Bowe,00610015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 436 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Bowie,00610020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 272 +3.6490322580645165,3.65,a-picp-i1,2021-22,Chicopee-Chicopee Academy,00610021,"","","","","","", 0.0, 50.0, 81.8, 75.0, 73.7, 70.6, 63.6, 70.7, 75 +2.771612903225807,2.77,a-picp-i1,2021-22,Chicopee-Chicopee Comprehensive High School,00610510,"","","","","","","","","", 62.6, 65.1, 35.4, 48.4, 53.7," 1,153" +3.932903225806452,3.93,a-picp-i1,2021-22,Chicopee-Chicopee High,00610505,"","","","","","","","","", 80.2, 83.0, 68.7, 72.9, 76.2, 922 +3.163870967741935,3.16,a-picp-i1,2021-22,Chicopee-Dupont Middle,00610310,"","","","","","", 89.4, 57.2, 41.9,"","","","", 61.3, 782 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Fairview Elementary,00610050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 398 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Gen John J Stefanik,00610090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 327 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Lambert-Lavoie,00610040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Litwin,00610022, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2021-22,Chicopee-Streiber Memorial School,00610065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 225 +5.083870967741936,5,a-picp-i1,2021-22,Christa McAuliffe Charter Public (District)-Christa McAuliffe Charter Public School,04180305,"","","","","","", 100.0, 96.0, 99.2,"","","","", 98.5, 389 +1.2903225806451613,1.29,a-picp-i1,2021-22,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505,"","","","","","","","","", 92.2, 6.7, 0.0, 0.0, 25.0, 204 +5.161290322580645,5,a-picp-i1,2021-22,Clarksburg-Clarksburg Elementary,00630010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 188 +5.156129032258065,5,a-picp-i1,2021-22,Clinton-Clinton Elementary,00640050, 99.4, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.9, 763 +5.161290322580645,5,a-picp-i1,2021-22,Clinton-Clinton Middle School,00640305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 608 +1.4606451612903226,1.46,a-picp-i1,2021-22,Clinton-Clinton Senior High,00640505,"","","","","","","","","", 27.9, 28.9, 28.6, 27.8, 28.3, 512 +3.009032258064516,3.01,a-picp-i1,2021-22,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, 19.0, 40.9, 31.8, 34.2, 24.1, 10.3, 58.3, 319 +4.846451612903226,4.85,a-picp-i1,2021-22,Cohasset-Cohasset High School,00650505,"","","","","","","","","", 95.3, 95.1, 89.8, 96.0, 93.9, 427 +5.145806451612903,5,a-picp-i1,2021-22,Cohasset-Cohasset Middle School,00650305,"","","","","","", 100.0, 100.0, 99.2,"","","","", 99.7, 318 +5.161290322580645,5,a-picp-i1,2021-22,Cohasset-Deer Hill,00650005,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 312 +5.145806451612903,5,a-picp-i1,2021-22,Cohasset-Joseph Osgood,00650010, 99.2, 100.0, 100.0,"","","","","","","","","","", 99.7, 338 +5.12,5,a-picp-i1,2021-22,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, 75.0,"", 99.2," 1,072" +2.9883870967741935,2.99,a-picp-i1,2021-22,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305,"","","","","","", 100.0, 100.0, 100.0, 84.6, 0.0, 27.6, 18.8, 57.9, 290 +0.0,1,a-picp-i1,2021-22,Community Day Charter Public School - Gateway (District)-Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0, 360 +0.0,1,a-picp-i1,2021-22,Community Day Charter Public School - Prospect (District)-Community Day Charter Public School - Prospect,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0, 364 +0.0,1,a-picp-i1,2021-22,Community Day Charter Public School - R. Kingman Webster (District)-Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0, 369 +5.161290322580645,5,a-picp-i1,2021-22,Concord-Alcott,00670005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +2.590967741935484,2.59,a-picp-i1,2021-22,Concord-Carlisle-Concord Carlisle High,06400505,"","","","","","","","","", 64.8, 49.8, 34.7, 52.5, 50.2," 1,320" +5.047741935483871,5,a-picp-i1,2021-22,Concord-Concord Middle,00670305,"","","","","","", 98.3, 96.3, 98.7,"","","","", 97.8, 687 +5.161290322580645,5,a-picp-i1,2021-22,Concord-Thoreau,00670020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 435 +5.161290322580645,5,a-picp-i1,2021-22,Concord-Willard,00670030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 426 +5.161290322580645,5,a-picp-i1,2021-22,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 393 +5.161290322580645,5,a-picp-i1,2021-22,Conway-Conway Grammar,00680005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 127 +3.7987096774193545,3.8,a-picp-i1,2021-22,Danvers-Danvers High,00710505,"","","","","","","","","", 86.1, 73.3, 68.5, 67.0, 73.6, 798 +5.161290322580645,5,a-picp-i1,2021-22,Danvers-Great Oak,00710015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 321 +5.161290322580645,5,a-picp-i1,2021-22,Danvers-Highlands,00710010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 370 +5.135483870967742,5,a-picp-i1,2021-22,Danvers-Holten Richmond Middle School,00710305,"","","","","","", 99.2, 100.0, 99.2,"","","","", 99.5, 781 +5.161290322580645,5,a-picp-i1,2021-22,Danvers-Ivan G Smith,00710032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 312 +5.161290322580645,5,a-picp-i1,2021-22,Danvers-Riverside,00710030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 271 +5.052903225806452,5,a-picp-i1,2021-22,Danvers-Willis E Thorpe,00710045, 100.0, 95.2, 100.0, 97.8, 100.0, 96.4,"","","","","","","", 97.9, 284 +5.161290322580645,5,a-picp-i1,2021-22,Dartmouth-Andrew B. Cushman School,00720005, 100.0,"","","","","","","","","","","","", 100.0, 60 +3.59741935483871,3.6,a-picp-i1,2021-22,Dartmouth-Dartmouth High,00720505,"","","","","","","","","", 79.5, 66.0, 65.6, 67.8, 69.7," 1,042" +5.0116129032258065,5,a-picp-i1,2021-22,Dartmouth-Dartmouth Middle,00720050,"","","","","","", 98.8, 94.1, 98.6,"","","","", 97.1, 816 +5.161290322580645,5,a-picp-i1,2021-22,Dartmouth-George H Potter,00720030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 379 +5.161290322580645,5,a-picp-i1,2021-22,Dartmouth-James M. Quinn School,00720040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 657 +5.161290322580645,5,a-picp-i1,2021-22,Dartmouth-Joseph Demello,00720015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 379 +5.089032258064516,5,a-picp-i1,2021-22,Dedham-Avery,00730010,"", 100.0, 96.7, 98.0, 97.8, 100.0,"","","","","","","", 98.6, 286 +2.7974193548387096,2.8,a-picp-i1,2021-22,Dedham-Dedham High,00730505,"","","","","","","","","", 60.6, 52.1, 59.2, 43.9, 54.2, 712 +5.027096774193549,5,a-picp-i1,2021-22,Dedham-Dedham Middle School,00730305,"","","","","","", 97.0, 96.0, 99.0,"","","","", 97.4, 578 +5.161290322580645,5,a-picp-i1,2021-22,Dedham-Early Childhood Center,00730005, 100.0,"","","","","","","","","","","","", 100.0, 223 +5.161290322580645,5,a-picp-i1,2021-22,Dedham-Greenlodge,00730025,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +5.161290322580645,5,a-picp-i1,2021-22,Dedham-Oakdale,00730030,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 243 +5.161290322580645,5,a-picp-i1,2021-22,Dedham-Riverdale,00730045,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 170 +5.161290322580645,5,a-picp-i1,2021-22,Deerfield-Deerfield Elementary,00740015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 304 +3.91741935483871,3.92,a-picp-i1,2021-22,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505,"","","","","","","", 0.0, 88.4, 82.4, 57.3, 86.6, 58.7, 75.9, 917 +5.140645161290323,5,a-picp-i1,2021-22,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 100.0, 100.0, 100.0, 98.6,"","","","","","","","","", 99.6, 281 +5.114838709677419,5,a-picp-i1,2021-22,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 100.0, 100.0, 100.0, 96.8,"","","","","","","","","", 99.1, 231 +5.161290322580645,5,a-picp-i1,2021-22,Dennis-Yarmouth-Mattacheese Middle School,06450305,"","","","","","", 100.0, 100.0,"","","","","", 100.0, 430 +5.1251612903225805,5,a-picp-i1,2021-22,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050,"","","","", 99.0, 100.0, 66.7, 100.0,"","","","","", 99.3, 453 +5.161290322580645,5,a-picp-i1,2021-22,Dennis-Yarmouth-Station Avenue Elementary,06450025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 433 +5.150967741935483,5,a-picp-i1,2021-22,Dighton-Rehoboth-Dighton Elementary,06500005, 100.0, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 427 +5.161290322580645,5,a-picp-i1,2021-22,Dighton-Rehoboth-Dighton Middle School,06500305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 388 +3.086451612903226,3.09,a-picp-i1,2021-22,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505,"","","","","","","","","", 53.3, 52.3, 62.2, 71.7, 59.8, 702 +5.150967741935483,5,a-picp-i1,2021-22,Dighton-Rehoboth-Dorothy L Beckwith,06500310,"","","","","", 100.0, 99.1, 100.0, 100.0,"","","","", 99.8, 463 +5.1251612903225805,5,a-picp-i1,2021-22,Dighton-Rehoboth-Palmer River,06500010, 100.0, 100.0, 99.1, 97.8, 100.0,"","","","","","","","", 99.3, 570 +5.161290322580645,5,a-picp-i1,2021-22,Douglas-Douglas Elementary School,00770015,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 374 +2.5341935483870968,2.53,a-picp-i1,2021-22,Douglas-Douglas High School,00770505,"","","","","","","","","", 42.5, 51.1, 51.2, 50.5, 49.1, 340 +4.903225806451613,4.9,a-picp-i1,2021-22,Douglas-Douglas Middle School,00770305,"","","","","","", 95.7, 96.8, 92.3,"","","","", 95.0, 279 +5.161290322580645,5,a-picp-i1,2021-22,Douglas-Douglas Primary School,00770005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 149 +5.161290322580645,5,a-picp-i1,2021-22,Dover-Chickering,00780005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 483 +4.278709677419355,4.28,a-picp-i1,2021-22,Dover-Sherborn-Dover-Sherborn Regional High,06550505,"","","","","","","","","", 89.8, 88.6, 75.0, 77.2, 82.9, 656 +5.161290322580645,5,a-picp-i1,2021-22,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 508 +5.150967741935483,5,a-picp-i1,2021-22,Dracut-Brookside Elementary,00790035, 100.0, 100.0, 98.7, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 449 +2.141935483870968,2.14,a-picp-i1,2021-22,Dracut-Dracut Senior High,00790505,"","","","","","","","","", 40.9, 40.8, 37.2, 46.3, 41.5, 873 +5.161290322580645,5,a-picp-i1,2021-22,Dracut-George H. Englesby Elementary School,00790045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 533 +5.161290322580645,5,a-picp-i1,2021-22,Dracut-Greenmont Avenue,00790030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 261 +4.96,4.96,a-picp-i1,2021-22,Dracut-Joseph A Campbell Elementary,00790020, 94.0, 96.2, 94.4, 95.8, 96.3, 100.0,"","","","","","","", 96.1, 557 +5.032258064516129,5,a-picp-i1,2021-22,Dracut-Justus C. Richardson Middle School,00790410,"","","","","","", 98.7, 95.9, 97.8,"","","","", 97.5, 909 +0.0,1,a-picp-i1,2021-22,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, 242 +5.161290322580645,5,a-picp-i1,2021-22,Dudley-Charlton Reg-Charlton Elementary,06580020, 100.0, 100.0,"","","","","","","","","","","", 100.0, 273 +5.104516129032258,5,a-picp-i1,2021-22,Dudley-Charlton Reg-Charlton Middle School,06580310,"","","","","", 99.3, 99.3, 99.3, 97.9,"","","","", 98.9, 618 +5.161290322580645,5,a-picp-i1,2021-22,Dudley-Charlton Reg-Dudley Elementary,06580005,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 346 +4.985806451612903,4.99,a-picp-i1,2021-22,Dudley-Charlton Reg-Dudley Middle School,06580305,"","","","","", 94.6, 98.5, 96.7, 96.6,"","","","", 96.6, 562 +5.161290322580645,5,a-picp-i1,2021-22,Dudley-Charlton Reg-Heritage School,06580030,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 438 +5.161290322580645,5,a-picp-i1,2021-22,Dudley-Charlton Reg-Mason Road School,06580010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 207 +2.198709677419355,2.2,a-picp-i1,2021-22,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505,"","","","","","","","","", 45.4, 48.0, 26.4, 48.6, 42.6, 922 +5.161290322580645,5,a-picp-i1,2021-22,Duxbury-Alden School,00820004,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 589 +5.161290322580645,5,a-picp-i1,2021-22,Duxbury-Chandler Elementary,00820006, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 570 +3.5612903225806454,3.56,a-picp-i1,2021-22,Duxbury-Duxbury High,00820505,"","","","","","","","","", 81.0, 64.6, 64.2, 66.2, 69.0, 943 +4.794838709677419,4.79,a-picp-i1,2021-22,Duxbury-Duxbury Middle,00820305,"","","","","","", 99.6, 94.7, 85.1,"","","","", 92.9, 649 +5.161290322580645,5,a-picp-i1,2021-22,East Bridgewater-Central,00830005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 451 +4.676129032258064,4.68,a-picp-i1,2021-22,East Bridgewater-East Bridgewater JR./SR. High School,00830505,"","","","","","","", 98.8, 95.6, 92.5, 90.1, 79.9, 86.4, 90.6, 943 +5.104516129032258,5,a-picp-i1,2021-22,East Bridgewater-Gordon W. Mitchell School,00830010,"","","", 100.0, 100.0, 97.5, 98.2,"","","","","","", 98.9, 638 +4.743225806451613,4.74,a-picp-i1,2021-22,East Longmeadow-Birchland Park,00870305,"","","","","","", 94.9, 94.1, 86.9,"","","","", 91.9, 605 +2.358709677419355,2.36,a-picp-i1,2021-22,East Longmeadow-East Longmeadow High,00870505,"","","","","","","","","", 51.1, 50.7, 35.2, 46.9, 45.7, 812 +5.161290322580645,5,a-picp-i1,2021-22,East Longmeadow-Mapleshade,00870010,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 270 +5.161290322580645,5,a-picp-i1,2021-22,East Longmeadow-Meadow Brook,00870013, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 508 +5.161290322580645,5,a-picp-i1,2021-22,East Longmeadow-Mountain View,00870015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 263 +5.161290322580645,5,a-picp-i1,2021-22,Eastham-Eastham Elementary,00850005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 176 +5.161290322580645,5,a-picp-i1,2021-22,Easthampton-Center School,00860005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 187 +2.8696774193548387,2.87,a-picp-i1,2021-22,Easthampton-Easthampton High,00860505,"","","","","","","","","", 60.4, 49.5, 51.1, 60.4, 55.6, 408 +5.161290322580645,5,a-picp-i1,2021-22,Easthampton-Maple,00860010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 188 +5.130322580645162,5,a-picp-i1,2021-22,Easthampton-Neil A Pepin,00860020, 100.0, 100.0, 100.0, 100.0, 97.3,"","","","","","","","", 99.4, 178 +5.089032258064516,5,a-picp-i1,2021-22,Easthampton-White Brook Middle School,00860305,"","","","","", 98.2, 99.2, 98.2, 98.9,"","","","", 98.6, 435 +5.161290322580645,5,a-picp-i1,2021-22,Easton-Center School,00880003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 218 +5.12,5,a-picp-i1,2021-22,Easton-Easton Middle School,00880405,"","","","","","", 100.0, 99.0, 98.5,"","","","", 99.2, 844 +5.161290322580645,5,a-picp-i1,2021-22,Easton-Moreau Hall,00880020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 189 +1.8219354838709676,1.82,a-picp-i1,2021-22,Easton-Oliver Ames High,00880505,"","","","","","","","","", 33.3, 29.7, 37.9, 39.8, 35.3," 1,112" +5.161290322580645,5,a-picp-i1,2021-22,Easton-Parkview Elementary,00880015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 273 +5.161290322580645,5,a-picp-i1,2021-22,Easton-Richardson Olmsted School,00880025,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 758 +5.058064516129032,5,a-picp-i1,2021-22,Edgartown-Edgartown Elementary,00890005, 100.0, 97.9, 93.9, 100.0, 100.0, 98.0, 97.6, 100.0, 95.7,"","","","", 98.0, 404 +2.3690322580645162,2.37,a-picp-i1,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, 100.0, 97.6, 45.9, 375 +5.161290322580645,5,a-picp-i1,2021-22,Erving-Erving Elementary,00910030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 113 +0.4129032258064516,1,a-picp-i1,2021-22,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505,"","","","","","","","","", 0.0, 5.9, 19.2, 7.5, 8.0," 1,627" +5.161290322580645,5,a-picp-i1,2021-22,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, 41 +2.63741935483871,2.64,a-picp-i1,2021-22,Everett-Everett High,00930505,"","","","","","","","","", 48.8, 55.8, 47.5, 52.4, 51.1," 2,335" +5.140645161290323,5,a-picp-i1,2021-22,Everett-George Keverian School,00930028, 99.0, 100.0, 97.1, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.6," 1,007" +5.135483870967742,5,a-picp-i1,2021-22,Everett-Lafayette School,00930038, 98.9, 99.2, 100.0, 98.0, 100.0, 100.0, 100.0, 100.0, 99.2,"","","","", 99.5," 1,028" +5.161290322580645,5,a-picp-i1,2021-22,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, 743 +5.130322580645162,5,a-picp-i1,2021-22,Everett-Parlin School,00930058, 99.2, 100.0, 100.0, 100.0, 99.1, 97.1, 100.0, 99.2, 100.0,"","","","", 99.4," 1,083" +4.980645161290322,4.98,a-picp-i1,2021-22,Everett-Sumner G. Whittier School,00930010, 91.7, 95.2, 100.0, 97.6, 97.7, 96.3, 97.7, 97.6, 94.5,"","","","", 96.5, 741 +5.145806451612903,5,a-picp-i1,2021-22,Everett-Webster School,00930015, 100.0, 100.0, 100.0, 100.0, 98.1, 100.0,"","","","","","","", 99.7, 347 +3.184516129032258,3.18,a-picp-i1,2021-22,Excel Academy Charter (District)-Excel Academy Charter School,04100205,"","","","","", 96.6, 96.1, 96.0, 97.2, 29.8, 24.4, 25.7, 18.5, 61.7," 1,388" +5.145806451612903,5,a-picp-i1,2021-22,Fairhaven-East Fairhaven,00940010, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 302 +4.201290322580645,4.2,a-picp-i1,2021-22,Fairhaven-Fairhaven High,00940505,"","","","","","","","","", 91.8, 86.9, 78.3, 67.8, 81.4, 630 +5.150967741935483,5,a-picp-i1,2021-22,Fairhaven-Hastings Middle,00940305,"","","","","","", 100.0, 99.4, 100.0,"","","","", 99.8, 455 +3.5716129032258066,3.57,a-picp-i1,2021-22,Fairhaven-Leroy Wood,00940030, 1.6, 1.4, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 69.2, 442 +2.544516129032258,2.54,a-picp-i1,2021-22,Fall River-B M C Durfee High,00950505,"","","","","","","","","", 47.0, 45.3, 49.8, 56.0, 49.3," 2,343" +5.135483870967742,5,a-picp-i1,2021-22,Fall River-Carlton M. Viveiros Elementary School,00950009, 100.0, 99.1, 100.0, 100.0, 97.9, 100.0,"","","","","","","", 99.5, 743 +5.083870967741936,5,a-picp-i1,2021-22,Fall River-Henry Lord Community School,00950017, 98.9, 97.8, 98.9, 97.7, 97.5, 96.7, 100.0, 100.0, 100.0,"","","","", 98.5, 758 +5.161290322580645,5,a-picp-i1,2021-22,Fall River-James Tansey,00950140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 282 +5.150967741935483,5,a-picp-i1,2021-22,Fall River-John J Doran,00950045, 100.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.8, 473 +5.150967741935483,5,a-picp-i1,2021-22,Fall River-Letourneau Elementary School,00950013, 100.0, 100.0, 100.0, 98.9, 100.0, 100.0,"","","","","","","", 99.8, 599 +5.130322580645162,5,a-picp-i1,2021-22,Fall River-Mary Fonseca Elementary School,00950011, 97.4, 100.0, 99.0, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 632 +5.063225806451612,5,a-picp-i1,2021-22,Fall River-Matthew J Kuss Middle,00950320,"","","","","","", 96.7, 97.9, 99.6,"","","","", 98.1, 721 +5.063225806451612,5,a-picp-i1,2021-22,Fall River-Morton Middle,00950315,"","","","","","", 98.3, 96.9, 99.2,"","","","", 98.1, 699 +4.96516129032258,4.97,a-picp-i1,2021-22,Fall River-North End Elementary,00950005, 96.4, 95.5, 96.6, 96.2, 97.0, 95.7,"","","","","","","", 96.2, 660 +2.1625806451612903,2.16,a-picp-i1,2021-22,Fall River-Resiliency Preparatory Academy,00950525,"","","","","","","", 44.4, 64.7, 23.8, 47.4, 50.0, 27.3, 41.9, 117 +5.12,5,a-picp-i1,2021-22,Fall River-Samuel Watson,00950145, 100.0, 100.0, 100.0, 100.0, 94.7, 100.0,"","","","","","","", 99.2, 246 +5.150967741935483,5,a-picp-i1,2021-22,Fall River-Spencer Borden,00950130, 100.0, 100.0, 100.0, 100.0, 99.1, 100.0,"","","","","","","", 99.8, 565 +2.694193548387097,2.69,a-picp-i1,2021-22,Fall River-Stone PK-12 School,00950340, 100.0,"", 100.0, 100.0, 100.0, 75.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 52.2, 67 +5.145806451612903,5,a-picp-i1,2021-22,Fall River-Talbot Innovation School,00950305,"","","","","","", 99.5, 100.0, 99.6,"","","","", 99.7, 642 +5.161290322580645,5,a-picp-i1,2021-22,Fall River-William S Greene,00950065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 660 +5.161290322580645,5,a-picp-i1,2021-22,Falmouth-East Falmouth Elementary,00960005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 193 +3.4219354838709677,3.42,a-picp-i1,2021-22,Falmouth-Falmouth High,00960505,"","","","","","","","","", 62.9, 70.9, 63.7, 68.1, 66.3, 812 +5.027096774193549,5,a-picp-i1,2021-22,Falmouth-Lawrence,00960405,"","","","","","","", 96.6, 98.4,"","","","", 97.4, 509 +5.161290322580645,5,a-picp-i1,2021-22,Falmouth-Morse Pond School,00960305,"","","","","", 100.0, 100.0,"","","","","","", 100.0, 471 +5.161290322580645,5,a-picp-i1,2021-22,Falmouth-Mullen-Hall,00960020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 397 +5.161290322580645,5,a-picp-i1,2021-22,Falmouth-North Falmouth Elementary,00960030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 339 +5.161290322580645,5,a-picp-i1,2021-22,Falmouth-Teaticket,00960015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 226 +5.161290322580645,5,a-picp-i1,2021-22,Farmington River Reg-Farmington River Elementary,06620020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 101 +4.934193548387096,4.93,a-picp-i1,2021-22,Fitchburg-Arthur M Longsjo Middle School,00970315,"","","","","", 94.6, 95.6, 94.4, 98.0,"","","","", 95.6, 675 +5.161290322580645,5,a-picp-i1,2021-22,Fitchburg-Crocker Elementary,00970016, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 541 +2.967741935483871,2.97,a-picp-i1,2021-22,Fitchburg-Fitchburg High,00970505,"","","","","","","","","", 62.7, 57.6, 52.9, 57.0, 57.5," 1,223" +0.16,1,a-picp-i1,2021-22,Fitchburg-Goodrich Academy,00970510,"","","","","","","","","", 0.0, 5.6, 2.3, 3.1, 3.1, 196 +5.032258064516129,5,a-picp-i1,2021-22,Fitchburg-McKay Arts Academy,00970340, 96.1, 97.5, 94.9, 94.9, 94.3, 100.0, 100.0, 100.0, 100.0,"","","","", 97.5, 671 +5.109677419354838,5,a-picp-i1,2021-22,Fitchburg-Memorial Middle School,00970048,"","","","","", 98.9, 99.4, 98.8, 98.8,"","","","", 99.0, 679 +5.161290322580645,5,a-picp-i1,2021-22,Fitchburg-Reingold Elementary,00970043, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 565 +5.161290322580645,5,a-picp-i1,2021-22,Fitchburg-South Street Elementary,00970060, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 543 +5.104516129032258,5,a-picp-i1,2021-22,Florida-Abbott Memorial,00980005, 100.0, 92.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 98.9, 95 +3.685161290322581,3.69,a-picp-i1,2021-22,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505,"","","","","","","", 94.9, 77.5, 60.0, 63.6, 68.4, 62.2, 71.4, 227 +4.185806451612903,4.19,a-picp-i1,2021-22,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.3, 97.0, 99.3, 6.2, 16.3, 12.6, 45.7, 81.1," 1,657" +5.161290322580645,5,a-picp-i1,2021-22,Foxborough-Charles Taylor Elementary,00990050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 244 +3.158709677419355,3.16,a-picp-i1,2021-22,Foxborough-Foxborough High,00990505,"","","","","","","","","", 68.2, 53.4, 58.7, 64.1, 61.2, 773 +5.0683870967741935,5,a-picp-i1,2021-22,Foxborough-John J Ahern,00990405,"","","","","", 100.0, 98.8, 97.3, 96.8,"","","","", 98.2, 773 +5.161290322580645,5,a-picp-i1,2021-22,Foxborough-Mabelle M Burrell,00990015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 258 +5.161290322580645,5,a-picp-i1,2021-22,Foxborough-Vincent M Igo Elementary,00990020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 349 +5.140645161290323,5,a-picp-i1,2021-22,Framingham-Barbieri Elementary,01000035, 98.2, 100.0, 100.0, 100.0, 100.0, 99.0,"","","","","","","", 99.6, 673 +5.161290322580645,5,a-picp-i1,2021-22,Framingham-Brophy,01000006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 475 +5.150967741935483,5,a-picp-i1,2021-22,Framingham-Cameron Middle School,01000302,"","","","","","", 100.0, 100.0, 99.5,"","","","", 99.8, 608 +5.161290322580645,5,a-picp-i1,2021-22,Framingham-Charlotte A Dunning,01000007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 423 +2.8129032258064517,2.81,a-picp-i1,2021-22,Framingham-Framingham High School,01000515,"","","","","","","","","", 62.0, 63.9, 46.6, 41.6, 54.5," 2,571" +5.037419354838709,5,a-picp-i1,2021-22,Framingham-Fuller Middle,01000305,"","","","","","", 97.4, 97.8, 97.5,"","","","", 97.6, 695 +5.150967741935483,5,a-picp-i1,2021-22,Framingham-Harmony Grove Elementary,01000055, 100.0, 100.0, 100.0, 100.0, 100.0, 99.0,"","","","","","","", 99.8, 528 +5.161290322580645,5,a-picp-i1,2021-22,Framingham-Hemenway,01000015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 540 +5.150967741935483,5,a-picp-i1,2021-22,Framingham-King Elementary School,01000005, 100.0, 100.0, 98.5, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 407 +5.145806451612903,5,a-picp-i1,2021-22,Framingham-Mary E Stapleton Elementary,01000045, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0,"","","","","","","", 99.7, 336 +5.130322580645162,5,a-picp-i1,2021-22,Framingham-Miriam F McCarthy School,01000050, 98.8, 100.0, 100.0, 100.0, 100.0, 98.0,"","","","","","","", 99.4, 514 +5.161290322580645,5,a-picp-i1,2021-22,Framingham-Potter Road,01000039, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 544 +5.161290322580645,5,a-picp-i1,2021-22,Framingham-Walsh Middle,01000310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 810 +0.9548387096774194,1,a-picp-i1,2021-22,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505,"","","","","","","", 0.0, 0.0, 0.0, 3.5, 59.4, 52.9, 18.5, 379 +0.0,1,a-picp-i1,2021-22,Franklin County Regional Vocational Technical-Franklin County Technical,08180605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 566 +5.130322580645162,5,a-picp-i1,2021-22,Franklin-Annie Sullivan Middle School,01010040,"","","","","","", 99.1, 98.9, 100.0,"","","","", 99.4, 332 +3.241290322580645,3.24,a-picp-i1,2021-22,Franklin-Franklin High,01010505,"","","","","","","","","", 88.4, 69.6, 45.1, 50.2, 62.8," 1,670" +5.161290322580645,5,a-picp-i1,2021-22,Franklin-Helen Keller Elementary,01010012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 553 +5.135483870967742,5,a-picp-i1,2021-22,Franklin-Horace Mann,01010405,"","","","","","", 99.1, 100.0, 99.2,"","","","", 99.5, 368 +5.161290322580645,5,a-picp-i1,2021-22,Franklin-J F Kennedy Memorial,01010013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 341 +5.161290322580645,5,a-picp-i1,2021-22,Franklin-Jefferson Elementary,01010010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 339 +5.161290322580645,5,a-picp-i1,2021-22,Franklin-Oak Street Elementary,01010030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 379 +5.161290322580645,5,a-picp-i1,2021-22,Franklin-Parmenter,01010032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 301 +5.0683870967741935,5,a-picp-i1,2021-22,Franklin-Remington Middle,01010310,"","","","","","", 97.4, 99.3, 97.7,"","","","", 98.2, 384 +3.4632258064516126,3.46,a-picp-i1,2021-22,Freetown-Lakeville-Apponequet Regional High,06650505,"","","","","","","","","", 94.6, 60.3, 47.1, 66.9, 67.1, 721 +5.161290322580645,5,a-picp-i1,2021-22,Freetown-Lakeville-Assawompset Elementary School,06650002, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 482 +5.161290322580645,5,a-picp-i1,2021-22,Freetown-Lakeville-Freetown Elementary School,06650001, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 390 +4.856774193548387,4.86,a-picp-i1,2021-22,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305,"","","","","","", 94.3, 95.3, 92.8, 100.0,"","","", 94.1, 678 +5.135483870967742,5,a-picp-i1,2021-22,Freetown-Lakeville-George R Austin Intermediate School,06650015,"","","","", 100.0, 99.1,"","","","","","","", 99.5, 440 +3.1535483870967744,3.15,a-picp-i1,2021-22,Frontier-Frontier Regional,06700505,"","","","","","","", 83.0, 84.8, 57.7, 45.4, 44.3, 48.0, 61.1, 610 +5.161290322580645,5,a-picp-i1,2021-22,Gardner-Elm Street School,01030001,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 473 +1.7187096774193547,1.72,a-picp-i1,2021-22,Gardner-Gardner Academy for Learning and Technology,01030515,"","","","","","","","","", 37.5, 25.0, 19.0, 41.5, 33.3, 102 +2.9109677419354836,2.91,a-picp-i1,2021-22,Gardner-Gardner High,01030505,"","","","","","","","", 76.6, 61.4, 39.0, 41.2, 51.7, 56.4, 738 +4.789677419354838,4.79,a-picp-i1,2021-22,Gardner-Gardner Middle School,01030405,"","","","","", 98.6, 80.2, 99.5,"","","","","", 92.8, 511 +5.047741935483871,5,a-picp-i1,2021-22,Gardner-Waterford Street,01030020, 97.3, 98.3,"","","","","","","","","","","", 97.8, 361 +5.161290322580645,5,a-picp-i1,2021-22,Gateway-Chester Elementary,06720059, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 95 +3.499354838709677,3.5,a-picp-i1,2021-22,Gateway-Gateway Regional High,06720505,"","","","","","","","","", 55.0, 63.8, 75.6, 75.6, 67.8, 177 +4.263225806451612,4.26,a-picp-i1,2021-22,Gateway-Gateway Regional Middle School,06720405,"","","","","","","", 81.1, 84.4,"","","","", 82.6, 138 +5.140645161290323,5,a-picp-i1,2021-22,Gateway-Littleville Elementary School,06720143, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.4,"","","","","","", 99.6, 282 +3.9896774193548388,3.99,a-picp-i1,2021-22,Georgetown-Georgetown High School,01050505,"","","","","","","","","", 100.0, 50.0, 66.7, 80.0, 77.3, 22 +4.934193548387096,4.93,a-picp-i1,2021-22,Georgetown-Georgetown Middle School,01050305,"","","","","","","", 95.5, 100.0,"","","","", 95.6, 90 +5.161290322580645,5,a-picp-i1,2021-22,Georgetown-Penn Brook,01050010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 677 +5.161290322580645,5,a-picp-i1,2021-22,Gill-Montague-Gill Elementary,06740005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 115 +4.88258064516129,4.88,a-picp-i1,2021-22,Gill-Montague-Great Falls Middle,06740310,"","","","","","", 98.3, 92.6, 93.0,"","","","", 94.6, 185 +5.161290322580645,5,a-picp-i1,2021-22,Gill-Montague-Hillcrest Elementary School,06740015, 100.0, 100.0,"","","","","","","","","","","", 100.0, 104 +5.161290322580645,5,a-picp-i1,2021-22,Gill-Montague-Sheffield Elementary School,06740050,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 207 +4.289032258064516,4.29,a-picp-i1,2021-22,Gill-Montague-Turners Fall High,06740505,"","","","","","","","","", 93.9, 92.5, 77.1, 60.0, 83.1, 172 +4.918709677419355,4.92,a-picp-i1,2021-22,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305,"","","","","", 97.6, 94.6, 98.9, 97.8, 93.2, 94.3, 100.0, 70.0, 95.3, 509 +5.161290322580645,5,a-picp-i1,2021-22,Gloucester-Beeman Memorial,01070010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 320 +5.161290322580645,5,a-picp-i1,2021-22,Gloucester-East Gloucester Elementary,01070020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 169 +2.8696774193548387,2.87,a-picp-i1,2021-22,Gloucester-Gloucester High,01070505,"","","","","","","","","", 58.2, 55.7, 52.2, 55.8, 55.6, 833 +5.161290322580645,5,a-picp-i1,2021-22,Gloucester-Plum Cove School,01070042, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 215 +5.063225806451612,5,a-picp-i1,2021-22,Gloucester-Ralph B O'Maley Middle,01070305,"","","","","","", 98.2, 98.6, 97.6,"","","","", 98.1, 641 +5.114838709677419,5,a-picp-i1,2021-22,Gloucester-Veterans Memorial,01070045, 100.0, 94.9, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.1, 218 +5.161290322580645,5,a-picp-i1,2021-22,Gloucester-West Parish,01070050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 367 +2.704516129032258,2.7,a-picp-i1,2021-22,Grafton-Grafton High School,01100505,"","","","","","","","","", 49.1, 37.7, 50.0, 71.2, 52.4, 902 +5.12,5,a-picp-i1,2021-22,Grafton-Grafton Middle,01100305,"","","","","","","", 99.7, 98.8,"","","","", 99.2, 529 +5.150967741935483,5,a-picp-i1,2021-22,Grafton-Millbury Street Elementary School,01100200,"","", 100.0, 100.0, 100.0, 99.3, 100.0,"","","","","","", 99.8, 628 +5.161290322580645,5,a-picp-i1,2021-22,Grafton-North Grafton Elementary,01100025, 100.0, 100.0,"","","","","","","","","","","", 100.0, 225 +5.140645161290323,5,a-picp-i1,2021-22,Grafton-North Street Elementary School,01100030,"","", 99.1, 100.0, 100.0, 100.0, 99.1,"","","","","","", 99.6, 537 +5.140645161290323,5,a-picp-i1,2021-22,Grafton-South Grafton Elementary,01100005, 99.2, 100.0,"","","","","","","","","","","", 99.6, 235 +5.161290322580645,5,a-picp-i1,2021-22,Granby-East Meadow,01110004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 381 +3.793548387096774,3.79,a-picp-i1,2021-22,Granby-Granby Jr Sr High School,01110505,"","","","","","","", 83.0, 98.0, 91.1, 86.7, 45.6, 51.5, 73.5, 310 +3.0141935483870967,3.01,a-picp-i1,2021-22,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 100.0, 90.0, 86.0, 95.3, 94.1, 94.3, 80.0, 84.3, 83.6, 10.2, 12.1, 26.2, 50.4, 58.4," 1,237" +0.33548387096774196,1,a-picp-i1,2021-22,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605,"","","","","","","","","", 6.8, 6.7, 6.1, 6.3, 6.5," 1,402" +0.025806451612903226,1,a-picp-i1,2021-22,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605,"","","","","","","","","", 0.0, 0.0, 0.0, 2.4, 0.5," 1,639" +0.3664516129032258,1,a-picp-i1,2021-22,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605,"","","","","","","","","", 7.4, 7.2, 7.6, 6.3, 7.1," 2,258" +0.3716129032258065,1,a-picp-i1,2021-22,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605,"","","","","","","","","", 7.3, 8.3, 7.0, 6.0, 7.2," 2,103" +4.970322580645161,4.97,a-picp-i1,2021-22,Greenfield-Discovery School at Four Corners,01140025, 94.1, 92.3, 100.0, 97.4, 97.9,"","","","","","","","", 96.3, 242 +5.161290322580645,5,a-picp-i1,2021-22,Greenfield-Federal Street School,01140010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 203 +3.6696774193548385,3.67,a-picp-i1,2021-22,Greenfield-Greenfield High,01140505,"","","","","","","","", 95.9, 73.6, 65.6, 55.6, 55.1, 71.1, 501 +4.846451612903226,4.85,a-picp-i1,2021-22,Greenfield-Greenfield Middle,01140305,"","","","","", 93.7, 93.0, 95.0,"","","","","", 93.9, 375 +5.161290322580645,5,a-picp-i1,2021-22,Greenfield-Newton School,01140035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 200 +5.161290322580645,5,a-picp-i1,2021-22,Groton-Dunstable-Florence Roche School,06730010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 526 +3.0141935483870967,3.01,a-picp-i1,2021-22,Groton-Dunstable-Groton Dunstable Regional,06730505,"","","","","","","","","", 54.5, 68.5, 53.2, 57.2, 58.4, 705 +5.027096774193549,5,a-picp-i1,2021-22,Groton-Dunstable-Groton Dunstable Regional Middle,06730305,"","","","","", 99.5, 96.3, 98.6, 94.9,"","","","", 97.4, 733 +5.161290322580645,5,a-picp-i1,2021-22,Groton-Dunstable-Swallow/Union School,06730005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 312 +5.161290322580645,5,a-picp-i1,2021-22,Hadley-Hadley Elementary,01170015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 230 +3.256774193548387,3.26,a-picp-i1,2021-22,Hadley-Hopkins Academy,01170505,"","","","","","","", 76.7, 82.1, 48.9, 67.4, 37.8, 69.4, 63.1, 233 +5.161290322580645,5,a-picp-i1,2021-22,Halifax-Halifax Elementary,01180005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 567 +5.161290322580645,5,a-picp-i1,2021-22,Hamilton-Wenham-Bessie Buker Elementary,06750007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 248 +5.161290322580645,5,a-picp-i1,2021-22,Hamilton-Wenham-Cutler School,06750010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 248 +3.767741935483871,3.77,a-picp-i1,2021-22,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505,"","","","","","","","","", 85.0, 76.2, 60.8, 71.3, 73.0, 489 +5.12,5,a-picp-i1,2021-22,Hamilton-Wenham-Miles River Middle,06750310,"","","","","","", 100.0, 100.0, 97.7,"","","","", 99.2, 379 +5.161290322580645,5,a-picp-i1,2021-22,Hamilton-Wenham-Winthrop School,06750015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 273 +3.2361290322580647,3.24,a-picp-i1,2021-22,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305,"","","","","","", 98.8, 100.0, 96.5, 22.1, 21.5, 42.7, 45.5, 62.7, 553 +3.721290322580645,3.72,a-picp-i1,2021-22,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305,"","","","","","", 95.1, 100.0, 100.0, 44.1, 25.5, 54.8, 61.5, 72.1, 362 +5.1251612903225805,5,a-picp-i1,2021-22,Hampden-Wilbraham-Green Meadows Elementary,06800005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 95.2, 95.2,"","","","", 99.3, 301 +5.161290322580645,5,a-picp-i1,2021-22,Hampden-Wilbraham-Mile Tree Elementary,06800025, 100.0, 100.0,"","","","","","","","","","","", 100.0, 263 +2.4206451612903224,2.42,a-picp-i1,2021-22,Hampden-Wilbraham-Minnechaug Regional High,06800505,"","","","","","","","","", 47.6, 46.8, 50.6, 43.3, 46.9," 1,006" +5.161290322580645,5,a-picp-i1,2021-22,Hampden-Wilbraham-Soule Road,06800030,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 319 +5.161290322580645,5,a-picp-i1,2021-22,Hampden-Wilbraham-Stony Hill School,06800050,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 309 +4.655483870967742,4.66,a-picp-i1,2021-22,Hampden-Wilbraham-Wilbraham Middle,06800310,"","","","","","", 92.0, 84.6, 94.1,"","","","", 90.2, 584 +3.556129032258065,3.56,a-picp-i1,2021-22,Hampshire-Hampshire Regional High,06830505,"","","","","","","", 98.4, 100.0, 48.0, 53.6, 48.5, 54.1, 68.9, 685 +5.161290322580645,5,a-picp-i1,2021-22,Hancock-Hancock Elementary,01210005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 43 +5.161290322580645,5,a-picp-i1,2021-22,Hanover-Cedar Elementary,01220004, 100.0, 100.0,"","","","","","","","","","","", 100.0, 386 +5.145806451612903,5,a-picp-i1,2021-22,Hanover-Center Elementary,01220005,"","", 99.1, 100.0, 100.0,"","","","","","","","", 99.7, 621 +2.689032258064516,2.69,a-picp-i1,2021-22,Hanover-Hanover High,01220505,"","","","","","","","","", 72.7, 49.2, 37.4, 49.2, 52.1, 707 +5.156129032258065,5,a-picp-i1,2021-22,Hanover-Hanover Middle,01220305,"","","","","", 100.0, 100.0, 100.0, 99.4,"","","","", 99.9, 802 +4.0,4.0,a-picp-i1,2021-22,Harvard-Bromfield,01250505,"","","","","","", 98.8, 98.7, 100.0, 89.6, 55.4, 50.7, 50.5, 77.5, 583 +5.114838709677419,5,a-picp-i1,2021-22,Harvard-Hildreth Elementary School,01250005, 97.6, 98.2, 98.5, 100.0, 100.0, 100.0,"","","","","","","", 99.1, 433 +5.161290322580645,5,a-picp-i1,2021-22,Hatfield-Hatfield Elementary,01270005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 183 +3.870967741935484,3.87,a-picp-i1,2021-22,Hatfield-Smith Academy,01270505,"","","","","","","", 100.0, 93.8, 52.4, 64.7, 69.2, 60.0, 75.0, 168 +0.0,1,a-picp-i1,2021-22,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, 22 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Bradford Elementary,01280008, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 520 +5.094193548387097,5,a-picp-i1,2021-22,Haverhill-Caleb Dustin Hunking School,01280030, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0, 98.1, 97.1, 97.8,"","","","", 98.7," 1,069" +4.71741935483871,4.72,a-picp-i1,2021-22,Haverhill-Consentino Middle School,01280100,"","","","","", 98.7, 95.1, 80.8, 96.5,"","","","", 91.4, 736 +0.0,1,a-picp-i1,2021-22,Haverhill-Crowell,01280515,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 20 +4.985806451612903,4.99,a-picp-i1,2021-22,Haverhill-Dr Paul Nettle,01280050,"","","","","", 98.5, 97.2, 93.7, 97.9,"","","","", 96.6, 588 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Golden Hill,01280026, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 488 +1.935483870967742,1.94,a-picp-i1,2021-22,Haverhill-Greenleaf Academy,01280033,"","","","","", 0.0,"", 40.0, 25.0, 66.7, 42.9, 0.0, 33.3, 37.5, 24 +2.9316129032258065,2.93,a-picp-i1,2021-22,Haverhill-Haverhill High,01280505,"","","","","","","","","", 68.2, 52.7, 48.3, 53.0, 56.8," 1,911" +5.032258064516129,5,a-picp-i1,2021-22,Haverhill-John G Whittier,01280085,"","","","","", 99.2, 96.0, 95.9, 98.7,"","","","", 97.5, 529 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Moody,01280045, 100.0,"","","","","","","","","","","","", 100.0, 15 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Pentucket Lake Elementary,01280054, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 475 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Silver Hill Elementary School,01280067, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 522 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Tilton,01280075, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 336 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Tilton Upper Middle School,01280105,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 153 +5.161290322580645,5,a-picp-i1,2021-22,Haverhill-Walnut Square,01280080, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 118 +5.161290322580645,5,a-picp-i1,2021-22,Hawlemont-Hawlemont Regional,06850005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 100 +4.289032258064516,4.29,a-picp-i1,2021-22,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305,"","","","","","", 95.0, 82.4, 80.7,"","","","", 83.1, 154 +5.161290322580645,5,a-picp-i1,2021-22,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, 302 +5.161290322580645,5,a-picp-i1,2021-22,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, 217 +5.161290322580645,5,a-picp-i1,2021-22,Hingham-East Elementary School,01310005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 415 +1.7703225806451612,1.77,a-picp-i1,2021-22,Hingham-Hingham High,01310505,"","","","","","","","","", 36.7, 21.4, 33.6, 44.8, 34.3," 1,193" +4.190967741935484,4.19,a-picp-i1,2021-22,Hingham-Hingham Middle School,01310410,"","","","","","", 99.7, 77.3, 65.5,"","","","", 81.2, 882 +5.161290322580645,5,a-picp-i1,2021-22,Hingham-Plymouth River,01310019, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 378 +5.161290322580645,5,a-picp-i1,2021-22,Hingham-South Elementary,01310020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 500 +5.161290322580645,5,a-picp-i1,2021-22,Hingham-Wm L Foster Elementary,01310010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 424 +3.6283870967741936,3.63,a-picp-i1,2021-22,Holbrook-Holbrook Middle High School,01330505,"","","","","","", 95.7, 89.6, 22.0, 72.4, 67.4, 64.1, 81.8, 70.3, 610 +5.161290322580645,5,a-picp-i1,2021-22,Holbrook-John F Kennedy,01330018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 648 +4.340645161290322,4.34,a-picp-i1,2021-22,Holland-Holland Elementary,01350005, 0.0, 100.0, 100.0, 96.7, 97.0, 100.0, 100.0,"","","","","","", 84.1, 195 +3.6490322580645165,3.65,a-picp-i1,2021-22,Holliston-Holliston High,01360505,"","","","","","","","","", 78.4, 79.1, 59.9, 65.8, 70.7, 823 +5.109677419354838,5,a-picp-i1,2021-22,Holliston-Miller School,01360007,"","","", 98.9, 99.5, 98.7,"","","","","","","", 99.0, 622 +5.150967741935483,5,a-picp-i1,2021-22,Holliston-Placentino Elementary,01360010, 99.6, 100.0, 100.0,"","","","","","","","","","", 99.8, 617 +5.078709677419355,5,a-picp-i1,2021-22,Holliston-Robert H. Adams Middle School,01360305,"","","","","","", 98.7, 97.7, 98.7,"","","","", 98.4, 682 +0.0,1,a-picp-i1,2021-22,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, 653 +5.161290322580645,5,a-picp-i1,2021-22,Holyoke-E N White Elementary,01370045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 334 +5.161290322580645,5,a-picp-i1,2021-22,Holyoke-H.B. Lawrence School,01370070, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 164 +2.0387096774193547,2.04,a-picp-i1,2021-22,Holyoke-Holyoke High,01370505,"","","","","","","","","", 30.2, 46.3, 48.6, 34.7, 39.5," 1,451" +4.990967741935484,4.99,a-picp-i1,2021-22,Holyoke-Holyoke STEM Academy,01370320,"","","","","","", 97.1, 94.3, 100.0,"","","","", 96.7, 272 +5.161290322580645,5,a-picp-i1,2021-22,Holyoke-Joseph Metcalf School,01370003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","", 100.0, 324 +5.161290322580645,5,a-picp-i1,2021-22,Holyoke-Kelly Elementary,01370040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 268 +4.067096774193549,4.07,a-picp-i1,2021-22,Holyoke-Lt Clayre Sullivan Elementary,01370055, 100.0, 100.0, 98.0, 51.1, 58.3, 70.8, 61.7, 78.4, 95.1,"","","","", 78.8, 424 +5.145806451612903,5,a-picp-i1,2021-22,Holyoke-Lt Elmer J McMahon Elementary,01370015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 96.6, 100.0, 100.0,"","","","", 99.7, 330 +5.161290322580645,5,a-picp-i1,2021-22,Holyoke-Maurice A Donahue Elementary,01370060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","", 100.0,"","","","", 100.0, 358 +0.0,1,a-picp-i1,2021-22,Holyoke-Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","", 0.0, 183 +5.145806451612903,5,a-picp-i1,2021-22,Holyoke-Veritas Prep Holyoke,01370075,"","","","","", 100.0, 100.0, 100.0, 99.1,"","","","", 99.7, 396 +5.094193548387097,5,a-picp-i1,2021-22,Holyoke-William R. Peck School,01370030,"","","","", 100.0, 100.0, 95.5, 100.0, 98.2,"","","","", 98.7, 224 +4.9961290322580645,5.0,a-picp-i1,2021-22,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 97.7, 97.1, 96.6, 95.5,"","","","","","","","","", 96.8, 311 +2.1212903225806454,2.12,a-picp-i1,2021-22,Hoosac Valley Regional-Hoosac Valley High School,06030505,"","","","","","","","", 1.9, 67.2, 59.3, 60.4, 51.5, 41.1, 336 +5.001290322580646,5,a-picp-i1,2021-22,Hoosac Valley Regional-Hoosac Valley Middle School,06030315,"","","","", 100.0, 98.7, 93.4, 96.0,"","","","","", 96.9, 322 +4.4232258064516135,4.42,a-picp-i1,2021-22,Hopedale-Hopedale Jr Sr High,01380505,"","","","","","","", 100.0, 98.9, 52.8, 96.0, 90.6, 71.6, 85.7, 470 +5.161290322580645,5,a-picp-i1,2021-22,Hopedale-Memorial,01380010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 548 +5.150967741935483,5,a-picp-i1,2021-22,Hopkinton-Elmwood,01390010,"","", 100.0, 99.7,"","","","","","","","","", 99.8, 641 +5.161290322580645,5,a-picp-i1,2021-22,Hopkinton-Hopkins Elementary School,01390015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 616 +2.9316129032258065,2.93,a-picp-i1,2021-22,Hopkinton-Hopkinton High,01390505,"","","","","","","","","", 73.1, 58.2, 44.5, 50.3, 56.8," 1,208" +5.135483870967742,5,a-picp-i1,2021-22,Hopkinton-Hopkinton Middle School,01390305,"","","","","","", 99.7, 99.4, 99.4,"","","","", 99.5, 941 +5.161290322580645,5,a-picp-i1,2021-22,Hopkinton-Marathon Elementary School,01390005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 572 +5.161290322580645,5,a-picp-i1,2021-22,Hudson-C A Farley,01410030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 410 +5.114838709677419,5,a-picp-i1,2021-22,Hudson-David J. Quinn Middle School,01410410,"","","","","", 99.0, 98.9, 99.4,"","","","","", 99.1, 561 +5.161290322580645,5,a-picp-i1,2021-22,Hudson-Forest Avenue Elementary,01410015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 313 +3.803870967741936,3.8,a-picp-i1,2021-22,Hudson-Hudson High,01410505,"","","","","","","","", 89.7, 84.2, 71.3, 56.9, 60.8, 73.7, 856 +5.161290322580645,5,a-picp-i1,2021-22,Hudson-Mulready Elementary,01410007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 222 +2.849032258064516,2.85,a-picp-i1,2021-22,Hull-Hull High,01420505,"","","","","","","","","", 78.5, 50.9, 50.8, 40.0, 55.2, 248 +5.145806451612903,5,a-picp-i1,2021-22,Hull-Lillian M Jacobs,01420015, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2,"","","","","","","", 99.7, 327 +4.95483870967742,4.95,a-picp-i1,2021-22,Hull-Memorial Middle,01420305,"","","","","","", 94.5, 96.7, 96.8,"","","","", 96.0, 177 +4.526451612903226,4.53,a-picp-i1,2021-22,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305,"","","","","", 99.0, 100.0, 100.0, 100.0, 90.7, 77.6, 69.0, 56.1, 87.7, 773 +4.258064516129032,4.26,a-picp-i1,2021-22,Ipswich-Ipswich High,01440505,"","","","","","","","","", 80.8, 78.5, 79.0, 91.2, 82.5, 525 +5.078709677419355,5,a-picp-i1,2021-22,Ipswich-Ipswich Middle School,01440305,"","","","","","", 99.1, 98.4, 97.6,"","","","", 98.4, 367 +5.161290322580645,5,a-picp-i1,2021-22,Ipswich-Paul F Doyon Memorial,01440007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +5.145806451612903,5,a-picp-i1,2021-22,Ipswich-Winthrop,01440015, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 359 +5.1251612903225805,5,a-picp-i1,2021-22,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6, 100.0, 95.2, 100.0,"","","","", 99.3, 611 +4.56258064516129,4.56,a-picp-i1,2021-22,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, 98.4, 97.6, 82.3, 79.4, 39.3, 42.1, 88.4," 1,617" +2.3690322580645162,2.37,a-picp-i1,2021-22,King Philip-King Philip Middle School,06900510,"","","","","","","", 99.1, 2.5,"","","","", 45.9, 719 +2.4,2.4,a-picp-i1,2021-22,King Philip-King Philip Regional High,06900505,"","","","","","","","","", 40.9, 52.2, 47.6, 45.0, 46.5," 1,162" +5.161290322580645,5,a-picp-i1,2021-22,Kingston-Kingston Elementary,01450005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 464 +5.161290322580645,5,a-picp-i1,2021-22,Kingston-Kingston Intermediate,01450020,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 591 +5.156129032258065,5,a-picp-i1,2021-22,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 100.0, 100.0, 100.0, 100.0, 100.0, 98.7, 100.0, 100.0, 100.0,"","","","", 99.9, 718 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Alexander B Bruce,01490015,"","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 451 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Arlington Elementary,01490009, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 565 +5.150967741935483,5,a-picp-i1,2021-22,Lawrence-Arlington Middle School,01490017,"","","","","", 99.2, 100.0, 100.0, 100.0,"","","","", 99.8, 582 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Edward F. Parthum,01490053, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 674 +5.12,5,a-picp-i1,2021-22,Lawrence-Emily G Wetherbee,01490080, 100.0, 100.0, 100.0, 98.2, 94.9, 100.0, 100.0, 100.0, 100.0,"","","","", 99.2, 527 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Francis M Leahy,01490040,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 408 +5.140645161290323,5,a-picp-i1,2021-22,Lawrence-Frost Middle School,01490525,"","","","","", 100.0, 100.0, 98.5, 100.0,"","","","", 99.6, 539 +5.150967741935483,5,a-picp-i1,2021-22,Lawrence-Gerard A. Guilmette,01490022,"", 100.0, 99.0, 100.0, 100.0,"","","","","","","","", 99.8, 470 +4.87225806451613,4.87,a-picp-i1,2021-22,Lawrence-Guilmette Middle School,01490025,"","","","","", 98.2, 93.2, 90.1, 96.2,"","","","", 94.4, 484 +0.0,1,a-picp-i1,2021-22,Lawrence-High School Learning Center,01490536,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 187 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-James F Hennessey,01490020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 219 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-John Breen School,01490003, 100.0,"","","","","","","","","","","","", 100.0, 109 +5.140645161290323,5,a-picp-i1,2021-22,Lawrence-John K Tarbox,01490075,"", 100.0, 100.0, 100.0, 98.5, 100.0,"","","","","","","", 99.6, 279 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Lawlor Early Childhood Center,01490002, 100.0,"","","","","","","","","","","","", 100.0, 164 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Lawrence Family Public Academy,01490011, 100.0,"","","","","","","","","","","","", 100.0, 117 +3.009032258064516,3.01,a-picp-i1,2021-22,Lawrence-Lawrence High School,01490515,"","","","","","","","","", 72.7, 33.0, 60.6, 65.7, 58.3," 2,912" +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Oliver Partnership School,01490048,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 460 +5.078709677419355,5,a-picp-i1,2021-22,Lawrence-Parthum Middle School,01490027,"","","","","", 98.5, 97.1, 98.5, 99.4,"","","","", 98.4, 559 +0.0,1,a-picp-i1,2021-22,Lawrence-RISE Academy,01490615,"","","","","","","","","","","","", 0.0, 0.0, 17 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-Robert Frost,01490018, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 562 +0.0,1,a-picp-i1,2021-22,Lawrence-Rollins Early Childhood Center,01490001, 0.0,"","","","","","","","","","","","", 0.0, 71 +2.430967741935484,2.43,a-picp-i1,2021-22,Lawrence-School for Exceptional Studies,01490537,"", 66.7, 66.7, 50.0, 22.2, 100.0, 100.0, 100.0, 66.7, 0.0, 11.1, 12.5, 28.6, 47.1, 87 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-South Lawrence East Elementary School,01490004,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 676 +0.01032258064516129,1,a-picp-i1,2021-22,Lawrence-Spark Academy,01490085,"","","","","","", 0.0, 0.8, 0.0,"","","","", 0.2, 431 +5.099354838709678,5,a-picp-i1,2021-22,Lawrence-UP Academy Leonard Middle School,01490090,"","","","","","", 98.2, 100.0, 98.3,"","","","", 98.8, 342 +5.161290322580645,5,a-picp-i1,2021-22,Lawrence-UP Academy Oliver Middle School,01490049,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 335 +5.161290322580645,5,a-picp-i1,2021-22,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, 660 +5.161290322580645,5,a-picp-i1,2021-22,Lee-Lee Elementary,01500025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 323 +3.607741935483871,3.61,a-picp-i1,2021-22,Lee-Lee Middle/High School,01500505,"","","","","","","", 80.0, 85.0, 80.4, 67.8, 52.6, 57.9, 69.9, 329 +5.161290322580645,5,a-picp-i1,2021-22,Leicester-Leicester Elementary,01510005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 515 +3.1432258064516128,3.14,a-picp-i1,2021-22,Leicester-Leicester High,01510505,"","","","","","","","","", 73.6, 62.6, 48.0, 60.3, 60.9, 437 +4.39741935483871,4.4,a-picp-i1,2021-22,Leicester-Leicester Middle,01510015,"","","","","", 94.7, 78.5, 75.7, 90.8,"","","","", 85.2, 420 +3.4270967741935485,3.43,a-picp-i1,2021-22,Lenox-Lenox Memorial High,01520505,"","","","","","", 86.2, 80.3, 80.0, 46.6, 57.1, 53.2, 62.1, 66.4, 428 +5.161290322580645,5,a-picp-i1,2021-22,Lenox-Morris,01520015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 284 +2.0283870967741935,2.03,a-picp-i1,2021-22,Leominster-Center For Technical Education Innovation,01530605,"","","","","","","","","", 52.1, 12.4, 64.9, 18.9, 39.3, 667 +5.150967741935483,5,a-picp-i1,2021-22,Leominster-Fall Brook,01530007, 100.0, 100.0, 100.0, 99.0, 100.0, 100.0,"","","","","","","", 99.8, 573 +4.774193548387097,4.77,a-picp-i1,2021-22,Leominster-Frances Drake School,01530010, 91.1, 94.0, 88.0, 90.4, 94.2, 97.1,"","","","","","","", 92.5, 510 +5.150967741935483,5,a-picp-i1,2021-22,Leominster-Johnny Appleseed,01530025, 100.0, 100.0, 100.0, 100.0, 99.1, 100.0,"","","","","","","", 99.8, 647 +0.0,1,a-picp-i1,2021-22,Leominster-Leominster Center for Excellence,01530515,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 38 +3.7006451612903226,3.7,a-picp-i1,2021-22,Leominster-Leominster High School,01530505,"","","","","","","","","", 79.1, 80.1, 67.0, 63.9, 71.7," 1,090" +5.156129032258065,5,a-picp-i1,2021-22,Leominster-Northwest,01530030, 100.0, 100.0, 100.0, 100.0, 100.0, 99.2,"","","","","","","", 99.9, 678 +5.032258064516129,5,a-picp-i1,2021-22,Leominster-Priest Street,01530040, 97.5,"","","","","","","","","","","","", 97.5, 158 +4.918709677419355,4.92,a-picp-i1,2021-22,Leominster-Samoset School,01530045,"","","","","","", 95.5, 95.6, 94.8,"","","","", 95.3, 533 +5.109677419354838,5,a-picp-i1,2021-22,Leominster-Sky View Middle School,01530320,"","","","","","", 99.0, 99.4, 98.7,"","","","", 99.0, 902 +4.758709677419355,4.76,a-picp-i1,2021-22,Leverett-Leverett Elementary,01540005, 41.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 92.2, 128 +5.161290322580645,5,a-picp-i1,2021-22,Lexington-Bowman,01550008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 456 +5.161290322580645,5,a-picp-i1,2021-22,Lexington-Bridge,01550006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 367 +5.161290322580645,5,a-picp-i1,2021-22,Lexington-Fiske,01550015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +5.161290322580645,5,a-picp-i1,2021-22,Lexington-Harrington,01550030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 420 +4.903225806451613,4.9,a-picp-i1,2021-22,Lexington-Jonas Clarke Middle,01550305,"","","","","","", 95.7, 94.4, 95.1,"","","","", 95.0, 846 +5.161290322580645,5,a-picp-i1,2021-22,Lexington-Joseph Estabrook,01550010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 535 +4.335483870967742,4.34,a-picp-i1,2021-22,Lexington-Lexington High,01550505,"","","","","","","","","", 85.8, 85.1, 81.8, 83.3, 84.0," 2,282" +5.161290322580645,5,a-picp-i1,2021-22,Lexington-Maria Hastings,01550035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 627 +5.001290322580646,5,a-picp-i1,2021-22,Lexington-Wm Diamond Middle,01550310,"","","","","","", 98.4, 97.2, 95.1,"","","","", 96.9, 934 +0.0,1,a-picp-i1,2021-22,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305,"","","","","","", 0.0, 0.0, 0.0, 0.0,"","","", 0.0, 314 +4.9961290322580645,5.0,a-picp-i1,2021-22,Lincoln-Hanscom Middle,01570305,"","","","", 100.0, 100.0, 97.4, 98.0, 88.1,"","","","", 96.8, 220 +5.161290322580645,5,a-picp-i1,2021-22,Lincoln-Hanscom Primary,01570006, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 199 +5.161290322580645,5,a-picp-i1,2021-22,Lincoln-Lincoln School,01570025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 522 +3.4374193548387093,3.44,a-picp-i1,2021-22,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505,"","","","","","","","","", 82.7, 66.9, 61.1, 55.6, 66.6," 1,510" +3.5664516129032253,3.57,a-picp-i1,2021-22,Littleton-Littleton High School,01580505,"","","","","","","","","", 72.9, 75.2, 56.0, 72.0, 69.1, 444 +4.913548387096775,4.91,a-picp-i1,2021-22,Littleton-Littleton Middle School,01580305,"","","","","","", 93.9, 97.0, 94.8,"","","","", 95.2, 399 +5.161290322580645,5,a-picp-i1,2021-22,Littleton-Russell St Elementary,01580015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 381 +0.0,1,a-picp-i1,2021-22,Littleton-Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0,"","","","","","","","","","", 0.0, 368 +5.161290322580645,5,a-picp-i1,2021-22,Longmeadow-Blueberry Hill,01590005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 408 +5.135483870967742,5,a-picp-i1,2021-22,Longmeadow-Center,01590010, 100.0, 100.0, 100.0, 100.0, 100.0, 97.1,"","","","","","","", 99.5, 414 +5.161290322580645,5,a-picp-i1,2021-22,Longmeadow-Glenbrook Middle,01590017,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 339 +1.9200000000000002,1.92,a-picp-i1,2021-22,Longmeadow-Longmeadow High,01590505,"","","","","","","","","", 42.8, 43.0, 34.4, 28.7, 37.2, 901 +5.109677419354838,5,a-picp-i1,2021-22,Longmeadow-Williams Middle,01590305,"","","","","","", 97.8, 99.0, 100.0,"","","","", 99.0, 314 +5.161290322580645,5,a-picp-i1,2021-22,Longmeadow-Wolf Swamp Road,01590025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +5.161290322580645,5,a-picp-i1,2021-22,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.118709677419354,4.12,a-picp-i1,2021-22,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505,"","","","","","","","","", 94.3, 82.6, 85.7, 56.7, 79.8, 109 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Abraham Lincoln,01600020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 450 +5.114838709677419,5,a-picp-i1,2021-22,Lowell-B.F. Butler Middle School,01600310,"","","","","", 99.2, 99.2, 97.9, 100.0,"","","","", 99.1, 552 +4.96516129032258,4.97,a-picp-i1,2021-22,Lowell-Bartlett Community Partnership,01600090, 100.0, 90.6, 100.0, 98.1, 86.4, 98.0, 96.1, 96.7, 98.4,"","","","", 96.2, 472 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Charles W Morey,01600030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 440 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Charlotte M Murkland Elementary,01600080, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 421 +5.140645161290323,5,a-picp-i1,2021-22,Lowell-Dr An Wang School,01600345,"","","","","", 99.4, 99.4, 99.4, 100.0,"","","","", 99.6, 685 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Dr Gertrude Bailey,01600002, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 444 +4.3509677419354835,4.35,a-picp-i1,2021-22,Lowell-Dr. Janice Adie Day School,01600605, 100.0, 100.0, 100.0, 75.0, 83.3, 100.0, 100.0, 100.0, 100.0, 75.0, 0.0,"", 0.0, 84.3, 51 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Greenhalge,01600015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 442 +5.016774193548387,5,a-picp-i1,2021-22,Lowell-Henry J Robinson Middle,01600330,"","","","","", 95.7, 98.1, 98.3, 96.6,"","","","", 97.2, 673 +4.650322580645161,4.65,a-picp-i1,2021-22,Lowell-James S Daley Middle School,01600315,"","","","","", 88.0, 89.3, 90.3, 92.7,"","","","", 90.1, 684 +5.058064516129032,5,a-picp-i1,2021-22,Lowell-James Sullivan Middle School,01600340,"","","","","", 99.4, 98.0, 97.7, 97.3,"","","","", 98.0, 664 +5.150967741935483,5,a-picp-i1,2021-22,Lowell-John J Shaughnessy,01600050, 98.9, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 448 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Joseph McAvinnue,01600010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 432 +5.130322580645162,5,a-picp-i1,2021-22,Lowell-Kathryn P. Stoklosa Middle School,01600360,"","","","","", 100.0, 99.4, 99.4, 98.9,"","","","", 99.4, 673 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Laura Lee Therapeutic Day School,01600085,"","","", 100.0,"", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 19 +2.8541935483870966,2.85,a-picp-i1,2021-22,Lowell-Leblanc Therapeutic Day School,01600320,"","","","","","","","","", 75.0, 66.7, 40.0, 33.3, 55.3, 38 +1.6206451612903225,1.62,a-picp-i1,2021-22,Lowell-Lowell High,01600505,"","","","","","","","","", 20.3, 36.4, 32.2, 40.4, 31.4," 3,116" +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Moody Elementary,01600027, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 234 +5.140645161290323,5,a-picp-i1,2021-22,Lowell-Pawtucketville Memorial,01600036, 100.0, 100.0, 97.7, 100.0, 100.0,"","","","","","","","", 99.6, 456 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Peter W Reilly,01600040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 461 +4.990967741935484,4.99,a-picp-i1,2021-22,Lowell-Pyne Arts,01600018, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2, 96.6, 90.6, 88.7,"","","","", 96.7, 480 +5.006451612903226,5,a-picp-i1,2021-22,Lowell-Rogers STEM Academy,01600005, 97.6, 98.9, 100.0, 100.0, 98.9, 100.0, 97.3, 91.9, 90.9,"","","","", 97.0, 902 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-S Christa McAuliffe Elementary,01600075, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 459 +0.39741935483870966,1,a-picp-i1,2021-22,Lowell-The Career Academy,01600515,"","","","","","","","","", 54.5, 0.0, 5.9, 0.0, 7.7, 91 +5.161290322580645,5,a-picp-i1,2021-22,Lowell-Washington,01600055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 224 +5.161290322580645,5,a-picp-i1,2021-22,Ludlow-East Street Elementary School,01610010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 288 +5.161290322580645,5,a-picp-i1,2021-22,Ludlow-Harris Brook Elementary School,01610665,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 620 +2.9316129032258065,2.93,a-picp-i1,2021-22,Ludlow-Ludlow Senior High,01610505,"","","","","","","","","", 76.5, 46.6, 52.2, 48.8, 56.8, 833 +3.2877419354838713,3.29,a-picp-i1,2021-22,Ludlow-Paul R Baird Middle,01610305,"","","","","","", 92.8, 93.9, 16.1,"","","","", 63.7, 535 +2.7974193548387096,2.8,a-picp-i1,2021-22,Lunenburg-Lunenburg High,01620505,"","","","","","","","","", 10.1, 56.2, 68.8, 79.5, 54.2, 465 +5.109677419354838,5,a-picp-i1,2021-22,Lunenburg-Lunenburg Middle School,01620305,"","","","","","", 99.3, 98.4, 99.3,"","","","", 99.0, 408 +5.161290322580645,5,a-picp-i1,2021-22,Lunenburg-Lunenburg Primary School,01620010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 341 +5.145806451612903,5,a-picp-i1,2021-22,Lunenburg-Turkey Hill Elementary School,01620025,"","","", 100.0, 100.0, 99.1,"","","","","","","", 99.7, 358 +4.990967741935484,4.99,a-picp-i1,2021-22,Lynn-A Drewicz Elementary,01630016, 100.0, 100.0, 100.0, 100.0, 80.3, 100.0,"","","","","","","", 96.7, 448 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Aborn,01630011, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 228 +4.00516129032258,4.01,a-picp-i1,2021-22,Lynn-Breed Middle School,01630405,"","","","","","", 97.6, 98.9, 20.4,"","","","", 77.6," 1,243" +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Brickett Elementary,01630020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 317 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Capt William G Shoemaker,01630090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 305 +2.2193548387096773,2.22,a-picp-i1,2021-22,Lynn-Classical High,01630505,"","","","","","","","","", 58.5, 60.8, 28.4, 22.1, 43.0," 1,806" +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Cobbet Elementary,01630035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 575 +5.150967741935483,5,a-picp-i1,2021-22,Lynn-E J Harrington,01630045, 100.0, 100.0, 98.9, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 556 +0.0,1,a-picp-i1,2021-22,Lynn-Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","", 0.0, 424 +0.21677419354838712,1,a-picp-i1,2021-22,Lynn-Fecteau-Leary Junior/Senior High School,01630525,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.3, 4.2, 71 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Hood,01630055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 468 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Ingalls,01630060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 682 +4.856774193548387,4.86,a-picp-i1,2021-22,Lynn-Julia F Callahan,01630030, 100.0, 100.0, 100.0, 69.2, 100.0, 95.7,"","","","","","","", 94.1, 304 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Lincoln-Thomson,01630070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 203 +2.0180645161290323,2.02,a-picp-i1,2021-22,Lynn-Lynn English High,01630510,"","","","","","","","","", 32.0, 59.6, 37.1, 30.8, 39.1," 2,133" +1.4606451612903226,1.46,a-picp-i1,2021-22,Lynn-Lynn Vocational Technical Institute,01630605, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","", 100.0, 8.7, 8.4, 11.5, 8.9, 28.3," 1,350" +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Lynn Woods,01630075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 158 +5.1251612903225805,5,a-picp-i1,2021-22,Lynn-Pickering Middle,01630420,"","","","","","", 100.0, 98.9, 98.8,"","","","", 99.3, 546 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Robert L Ford,01630050,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 431 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Sewell-Anderson,01630085, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 280 +4.665806451612903,4.67,a-picp-i1,2021-22,Lynn-Thurgood Marshall Mid,01630305,"","","","","","", 86.0, 93.0, 92.4,"","","","", 90.4," 1,271" +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Tracy,01630100,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 376 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Washington Elementary School,01630005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 439 +0.8980645161290322,1,a-picp-i1,2021-22,Lynn-William R Fallon,01630080,"", 0.0, 0.0, 0.0, 28.6, 40.0,"","","","","","","", 17.4, 23 +5.161290322580645,5,a-picp-i1,2021-22,Lynn-Wm P Connery,01630040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 530 +5.161290322580645,5,a-picp-i1,2021-22,Lynnfield-Huckleberry Hill,01640010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 450 +1.9974193548387098,2.0,a-picp-i1,2021-22,Lynnfield-Lynnfield High,01640505,"","","","","","","","","", 61.3, 41.6, 22.6, 28.4, 38.7, 569 +5.161290322580645,5,a-picp-i1,2021-22,Lynnfield-Lynnfield Middle School,01640405,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 692 +5.161290322580645,5,a-picp-i1,2021-22,Lynnfield-Summer Street,01640020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 435 +4.449032258064516,4.45,a-picp-i1,2021-22,MATCH Charter Public School (District)-MATCH Charter Public School,04690505, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 95.7, 94.7, 93.7, 97.6, 96.1, 1.4, 0.0, 86.2," 1,171" +0.2838709677419355,1,a-picp-i1,2021-22,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505,"","","","","","","","","","","", 0.0, 12.2, 5.5, 91 +5.063225806451612,5,a-picp-i1,2021-22,Malden-Beebe,01650003, 98.3, 100.0, 99.0, 100.0, 97.9, 94.4, 96.2, 99.0, 97.9,"","","","", 98.1, 960 +5.073548387096774,5,a-picp-i1,2021-22,Malden-Ferryway,01650013, 99.2, 96.3, 100.0, 99.0, 99.1, 97.2, 98.0, 96.0, 99.0,"","","","", 98.3, 976 +5.161290322580645,5,a-picp-i1,2021-22,Malden-Forestdale,01650027, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 613 +5.089032258064516,5,a-picp-i1,2021-22,Malden-Linden,01650047, 94.0, 99.0, 98.1, 100.0, 97.8, 99.0, 100.0, 100.0, 100.0,"","","","", 98.6, 866 +2.338064516129032,2.34,a-picp-i1,2021-22,Malden-Malden High,01650505,"","","","","","","","","", 43.6, 47.5, 40.2, 50.0, 45.3," 1,846" +5.161290322580645,5,a-picp-i1,2021-22,Malden-Salemwood,01650057, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 995 +5.161290322580645,5,a-picp-i1,2021-22,Manchester Essex Regional-Essex Elementary,06980020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 222 +3.1535483870967744,3.15,a-picp-i1,2021-22,Manchester Essex Regional-Manchester Essex Regional High School,06980510,"","","","","","","","","", 89.4, 70.7, 36.1, 52.8, 61.1, 450 +5.104516129032258,5,a-picp-i1,2021-22,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030,"","","","","","", 97.4, 100.0, 99.1,"","","","", 98.9, 284 +5.161290322580645,5,a-picp-i1,2021-22,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 279 +5.161290322580645,5,a-picp-i1,2021-22,Mansfield-Everett W Robinson,01670007, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 732 +5.027096774193549,5,a-picp-i1,2021-22,Mansfield-Harold L Qualters Middle,01670035,"","","","","","", 99.3, 98.5, 94.5,"","","","", 97.4, 806 +5.161290322580645,5,a-picp-i1,2021-22,Mansfield-Jordan/Jackson Elementary,01670014,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 728 +3.2361290322580647,3.24,a-picp-i1,2021-22,Mansfield-Mansfield High,01670505,"","","","","","","","","", 64.1, 77.1, 60.5, 49.5, 62.7," 1,099" +1.047741935483871,1.05,a-picp-i1,2021-22,Map Academy Charter School (District)-Map Academy Charter School,35170505,"","","","","","","","","", 36.0, 18.2, 23.0, 5.4, 20.3, 222 +5.161290322580645,5,a-picp-i1,2021-22,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305,"","","","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 222 +5.161290322580645,5,a-picp-i1,2021-22,Marblehead-Glover,01680020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 270 +5.161290322580645,5,a-picp-i1,2021-22,Marblehead-Lucretia and Joseph Brown School,01680030, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 389 +2.9470967741935485,2.95,a-picp-i1,2021-22,Marblehead-Marblehead High,01680505,"","","","","","","","","", 74.6, 54.8, 46.3, 52.0, 57.1, 932 +4.71741935483871,4.72,a-picp-i1,2021-22,Marblehead-Marblehead Veterans Middle School,01680300,"","","","","","","", 87.9, 94.9,"","","","", 91.4, 394 +5.161290322580645,5,a-picp-i1,2021-22,Marblehead-Village School,01680016,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 571 +5.161290322580645,5,a-picp-i1,2021-22,Marion-Sippican,01690005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 390 +5.0683870967741935,5,a-picp-i1,2021-22,Marlborough-1 LT Charles W. Whitcomb School,01700045,"","","","","","", 100.0, 95.8, 98.8,"","","","", 98.2," 1,219" +5.161290322580645,5,a-picp-i1,2021-22,Marlborough-Charles Jaworek School,01700030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 688 +5.161290322580645,5,a-picp-i1,2021-22,Marlborough-Francis J Kane,01700008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 516 +5.161290322580645,5,a-picp-i1,2021-22,Marlborough-Goodnow Brothers Elementary School,01700020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 788 +3.2361290322580647,3.24,a-picp-i1,2021-22,Marlborough-Marlborough High,01700505,"","","","","","","","","", 67.0, 58.2, 63.5, 61.0, 62.7," 1,130" +5.161290322580645,5,a-picp-i1,2021-22,Marlborough-Richer,01700025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 559 +5.161290322580645,5,a-picp-i1,2021-22,Marshfield-Daniel Webster,01710015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 292 +5.161290322580645,5,a-picp-i1,2021-22,Marshfield-Eames Way School,01710005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.104516129032258,5,a-picp-i1,2021-22,Marshfield-Furnace Brook Middle,01710310,"","","","","","", 99.6, 99.0, 98.3,"","","","", 98.9, 854 +5.161290322580645,5,a-picp-i1,2021-22,Marshfield-Gov Edward Winslow,01710020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 366 +2.209032258064516,2.21,a-picp-i1,2021-22,Marshfield-Marshfield High,01710505,"","","","","","","","","", 50.1, 43.4, 42.0, 35.3, 42.8," 1,233" +5.161290322580645,5,a-picp-i1,2021-22,Marshfield-Martinson Elementary,01710025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 458 +5.161290322580645,5,a-picp-i1,2021-22,Marshfield-South River,01710010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 261 +4.1651612903225805,4.17,a-picp-i1,2021-22,Martha's Vineyard Charter (District)-Martha's Vineyard Charter School,04660550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 87.5, 100.0, 80.7, 176 +2.761290322580645,2.76,a-picp-i1,2021-22,Martha's Vineyard-Martha's Vineyard Regional High,07000505,"","","","","","","","","", 67.2, 43.9, 50.9, 45.9, 53.5, 724 +5.161290322580645,5,a-picp-i1,2021-22,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, 360 +2.224516129032258,2.22,a-picp-i1,2021-22,Masconomet-Masconomet Regional High School,07050505,"","","","","","","","","", 55.5, 44.4, 30.7, 44.6, 43.1," 1,041" +5.150967741935483,5,a-picp-i1,2021-22,Masconomet-Masconomet Regional Middle School,07050405,"","","","","","","", 100.0, 99.7,"","","","", 99.8, 599 +5.161290322580645,5,a-picp-i1,2021-22,Mashpee-Kenneth Coombs School,01720005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 297 +2.2916129032258064,2.29,a-picp-i1,2021-22,Mashpee-Mashpee High,01720505,"","","","","","","","","", 41.1, 40.6, 45.9, 50.0, 44.4, 453 +4.258064516129032,4.26,a-picp-i1,2021-22,Mashpee-Mashpee Middle School,01720020,"","","","","","","", 81.7, 83.3,"","","","", 82.5, 240 +4.9961290322580645,5.0,a-picp-i1,2021-22,Mashpee-Quashnet School,01720035,"","","", 97.8, 99.1, 97.2, 93.5,"","","","","","", 96.8, 436 +5.161290322580645,5,a-picp-i1,2021-22,Mattapoisett-Center,01730005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 224 +5.161290322580645,5,a-picp-i1,2021-22,Mattapoisett-Old Hammondtown,01730010,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 187 +5.150967741935483,5,a-picp-i1,2021-22,Maynard-Fowler School,01740305,"","","","", 100.0, 100.0, 100.0, 100.0, 98.9,"","","","", 99.8, 460 +5.161290322580645,5,a-picp-i1,2021-22,Maynard-Green Meadow,01740010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 356 +3.514838709677419,3.51,a-picp-i1,2021-22,Maynard-Maynard High,01740505,"","","","","","","","","", 66.7, 62.0, 76.6, 67.0, 68.1, 326 +5.161290322580645,5,a-picp-i1,2021-22,Medfield-Dale Street,01750005,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 395 +3.3187096774193545,3.32,a-picp-i1,2021-22,Medfield-Medfield Senior High,01750505,"","","","","","","","","", 78.5, 76.1, 45.2, 59.5, 64.3, 748 +5.161290322580645,5,a-picp-i1,2021-22,Medfield-Memorial School,01750003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 382 +5.161290322580645,5,a-picp-i1,2021-22,Medfield-Ralph Wheelock School,01750007,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 400 +4.9961290322580645,5.0,a-picp-i1,2021-22,Medfield-Thomas Blake Middle,01750305,"","","","","","", 97.6, 94.0, 98.9,"","","","", 96.8, 566 +5.161290322580645,5,a-picp-i1,2021-22,Medford-Brooks School,01760130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 477 +1.2903225806451613,1.29,a-picp-i1,2021-22,Medford-Curtis-Tufts,01760510,"","","","","","","","","","", 66.7, 33.3, 0.0, 25.0, 12 +5.089032258064516,5,a-picp-i1,2021-22,Medford-John J McGlynn Elementary School,01760068, 97.8, 98.6, 98.3, 98.1, 100.0, 99.0,"","","","","","","", 98.6, 441 +5.078709677419355,5,a-picp-i1,2021-22,Medford-John J. McGlynn Middle School,01760320,"","","","","","", 98.8, 96.9, 99.4,"","","","", 98.4, 505 +4.985806451612903,4.99,a-picp-i1,2021-22,Medford-Madeleine Dugger Andrews,01760315,"","","","","","", 95.7, 97.2, 96.8,"","","","", 96.6, 465 +1.8116129032258066,1.81,a-picp-i1,2021-22,Medford-Medford High,01760505,"","","","","","","","","", 32.3, 40.8, 37.3, 30.0, 35.1," 1,230" +5.161290322580645,5,a-picp-i1,2021-22,Medford-Milton Fuller Roberts,01760150, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 495 +5.161290322580645,5,a-picp-i1,2021-22,Medford-Missituk Elementary School,01760140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 465 +5.161290322580645,5,a-picp-i1,2021-22,Medway-Burke/Memorial Elementary School,01770015,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 476 +5.161290322580645,5,a-picp-i1,2021-22,Medway-John D Mc Govern Elementary,01770013, 100.0, 100.0,"","","","","","","","","","","", 100.0, 299 +3.303225806451613,3.3,a-picp-i1,2021-22,Medway-Medway High,01770505,"","","","","","","","","", 67.1, 57.3, 56.8, 73.4, 64.0, 636 +5.052903225806452,5,a-picp-i1,2021-22,Medway-Medway Middle,01770305,"","","","","", 96.1, 97.7, 99.4, 98.4,"","","","", 97.9, 672 +5.161290322580645,5,a-picp-i1,2021-22,Melrose-Early Childhood Center,01780003, 100.0,"","","","","","","","","","","","", 100.0, 46 +5.161290322580645,5,a-picp-i1,2021-22,Melrose-Herbert Clark Hoover,01780017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 301 +5.161290322580645,5,a-picp-i1,2021-22,Melrose-Horace Mann,01780025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 267 +5.161290322580645,5,a-picp-i1,2021-22,Melrose-Lincoln,01780020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 409 +2.415483870967742,2.42,a-picp-i1,2021-22,Melrose-Melrose High,01780505,"","","","","","","","","", 58.4, 51.8, 33.8, 43.1, 46.8, 918 +4.629677419354839,4.63,a-picp-i1,2021-22,Melrose-Melrose Middle,01780305,"","","","","","", 99.0, 96.8, 72.7,"","","","", 89.7, 846 +5.161290322580645,5,a-picp-i1,2021-22,Melrose-Roosevelt,01780035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 420 +5.161290322580645,5,a-picp-i1,2021-22,Melrose-Winthrop,01780050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 401 +5.161290322580645,5,a-picp-i1,2021-22,Mendon-Upton-Henry P Clough,07100179, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 327 +5.161290322580645,5,a-picp-i1,2021-22,Mendon-Upton-Memorial School,07100001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 470 +4.753548387096774,4.75,a-picp-i1,2021-22,Mendon-Upton-Miscoe Hill School,07100015,"","","","","", 100.0, 98.8, 76.2, 93.9,"","","","", 92.1, 672 +2.900645161290323,2.9,a-picp-i1,2021-22,Mendon-Upton-Nipmuc Regional High,07100510,"","","","","","","","","", 63.6, 54.1, 51.8, 54.8, 56.2, 630 +5.140645161290323,5,a-picp-i1,2021-22,Methuen-Comprehensive Grammar School,01810050, 100.0, 98.7, 100.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.6, 947 +5.161290322580645,5,a-picp-i1,2021-22,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,178" +5.161290322580645,5,a-picp-i1,2021-22,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,045" +3.0193548387096776,3.02,a-picp-i1,2021-22,Methuen-Methuen High,01810505,"","","","","","","","","", 52.6, 55.9, 60.3, 65.3, 58.5," 1,967" +5.161290322580645,5,a-picp-i1,2021-22,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,232" +5.150967741935483,5,a-picp-i1,2021-22,Middleborough-Henry B. Burkland Elementary School,01820008,"", 100.0, 100.0, 100.0, 99.1, 100.0,"","","","","","","", 99.8, 545 +5.032258064516129,5,a-picp-i1,2021-22,Middleborough-John T. Nichols Middle,01820305,"","","","","","", 97.3, 98.3, 96.9,"","","","", 97.5, 720 +5.161290322580645,5,a-picp-i1,2021-22,Middleborough-Mary K. Goode Elementary School,01820010,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 609 +5.161290322580645,5,a-picp-i1,2021-22,Middleborough-Memorial Early Childhood Center,01820011, 100.0,"","","","","","","","","","","","", 100.0, 226 +2.7922580645161292,2.79,a-picp-i1,2021-22,Middleborough-Middleborough High,01820505,"","","","","","","","","", 42.8, 71.3, 54.6, 49.1, 54.1, 878 +5.161290322580645,5,a-picp-i1,2021-22,Middleton-Fuller Meadow,01840003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 288 +5.161290322580645,5,a-picp-i1,2021-22,Middleton-Howe-Manning,01840005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 364 +5.161290322580645,5,a-picp-i1,2021-22,Milford-Brookside,01850065, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 479 +5.161290322580645,5,a-picp-i1,2021-22,Milford-Memorial,01850010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 517 +2.6838709677419357,2.68,a-picp-i1,2021-22,Milford-Milford High,01850505,"","","","","","","","","", 52.3, 51.3, 49.8, 54.9, 52.0," 1,311" +4.841290322580645,4.84,a-picp-i1,2021-22,Milford-Stacy Middle,01850305,"","","","","","", 91.6, 94.2, 95.3,"","","","", 93.8," 1,108" +5.156129032258065,5,a-picp-i1,2021-22,Milford-Woodland,01850090,"","","", 100.0, 100.0, 99.7,"","","","","","","", 99.9," 1,002" +5.161290322580645,5,a-picp-i1,2021-22,Millbury-Elmwood Street,01860017, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 464 +3.04,3.04,a-picp-i1,2021-22,Millbury-Millbury Junior/Senior High,01860505,"","","","","","","", 56.1, 71.7, 54.4, 47.1, 54.0, 74.0, 58.9, 752 +5.161290322580645,5,a-picp-i1,2021-22,Millbury-Raymond E. Shaw Elementary,01860025,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 345 +4.247741935483871,4.25,a-picp-i1,2021-22,Millis-Clyde F Brown,01870005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.3, 538 +2.6425806451612903,2.64,a-picp-i1,2021-22,Millis-Millis High School,01870505,"","","","","","","","","", 75.8, 39.1, 45.1, 42.1, 51.2, 330 +5.0683870967741935,5,a-picp-i1,2021-22,Millis-Millis Middle,01870020,"","","","","","", 98.8, 96.3, 100.0,"","","","", 98.2, 271 +4.412903225806452,4.41,a-picp-i1,2021-22,Milton-Charles S Pierce Middle,01890410,"","","","","","", 98.1, 78.3, 79.8,"","","","", 85.5, 932 +4.975483870967742,4.98,a-picp-i1,2021-22,Milton-Collicot,01890005, 94.5, 97.1, 94.2, 97.0, 97.2, 97.6,"","","","","","","", 96.4, 616 +5.150967741935483,5,a-picp-i1,2021-22,Milton-Cunningham School,01890007, 98.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 539 +5.161290322580645,5,a-picp-i1,2021-22,Milton-Glover,01890010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 629 +3.323870967741936,3.32,a-picp-i1,2021-22,Milton-Milton High,01890505,"","","","","","","","","", 59.6, 68.1, 63.8, 65.9, 64.4," 1,102" +5.150967741935483,5,a-picp-i1,2021-22,Milton-Tucker,01890020, 100.0, 98.5, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 425 +3.0503225806451613,3.05,a-picp-i1,2021-22,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605,"","","","","","","","","", 79.6, 48.0, 51.0, 53.3, 59.1, 643 +5.161290322580645,5,a-picp-i1,2021-22,Mohawk Trail-Buckland-Shelburne Regional,07170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 244 +5.161290322580645,5,a-picp-i1,2021-22,Mohawk Trail-Colrain Central,07170010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 87 +3.829677419354839,3.83,a-picp-i1,2021-22,Mohawk Trail-Mohawk Trail Regional School,07170505,"","","","","","","", 95.8, 98.3, 66.7, 46.2, 68.0, 36.1, 74.2, 271 +5.161290322580645,5,a-picp-i1,2021-22,Mohawk Trail-Sanderson Academy,07170020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 100 +5.161290322580645,5,a-picp-i1,2021-22,Monomoy Regional School District-Chatham Elementary School,07120001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 149 +5.161290322580645,5,a-picp-i1,2021-22,Monomoy Regional School District-Harwich Elementary School,07120002, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 470 +3.7316129032258063,3.73,a-picp-i1,2021-22,Monomoy Regional School District-Monomoy Regional High School,07120515,"","","","","","","","", 75.7, 70.1, 68.1, 70.6, 76.5, 72.3, 679 +5.150967741935483,5,a-picp-i1,2021-22,Monomoy Regional School District-Monomoy Regional Middle School,07120315,"","","","","", 100.0, 99.3, 100.0,"","","","","", 99.8, 461 +5.161290322580645,5,a-picp-i1,2021-22,Monson-Granite Valley School,01910030,"", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 414 +3.3806451612903228,3.38,a-picp-i1,2021-22,Monson-Monson High School,01910505,"","","","","","","", 95.9, 88.7, 44.7, 46.5, 47.4, 41.8, 65.5, 330 +5.161290322580645,5,a-picp-i1,2021-22,Monson-Quarry Hill Community School,01910010, 100.0,"","","","","","","","","","","","", 100.0, 53 +1.295483870967742,1.3,a-picp-i1,2021-22,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605,"","","","","","","","","", 35.5, 18.6, 21.8, 23.7, 25.1," 1,393" +5.161290322580645,5,a-picp-i1,2021-22,Mount Greylock-Lanesborough Elementary,07150005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 190 +2.7406451612903227,2.74,a-picp-i1,2021-22,Mount Greylock-Mt Greylock Regional High,07150505,"","","","","","","", 29.6, 25.9, 74.4, 73.5, 53.6, 68.1, 53.1, 529 +5.145806451612903,5,a-picp-i1,2021-22,Mount Greylock-Williamstown Elementary,07150010, 98.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 397 +4.144516129032258,4.14,a-picp-i1,2021-22,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, 11.1, 6.6, 80.3," 1,580" +4.00516129032258,4.01,a-picp-i1,2021-22,Nahant-Johnson,01960010, 100.0, 0.0, 95.2, 100.0, 100.0, 100.0, 100.0,"","","","","","", 77.6, 125 +4.531612903225806,4.53,a-picp-i1,2021-22,Nantucket-Cyrus Peirce,01970010,"","","","","","", 99.2, 92.2, 74.2,"","","","", 87.8, 436 +5.161290322580645,5,a-picp-i1,2021-22,Nantucket-Nantucket Elementary,01970005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 339 +4.232258064516129,4.23,a-picp-i1,2021-22,Nantucket-Nantucket High,01970505,"","","","","","","","","", 88.8, 84.6, 80.1, 73.5, 82.0, 567 +5.161290322580645,5,a-picp-i1,2021-22,Nantucket-Nantucket Intermediate School,01970020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 328 +5.130322580645162,5,a-picp-i1,2021-22,Narragansett-Narragansett Middle,07200305,"","","","","", 99.2, 100.0, 99.2,"","","","","", 99.4, 359 +2.5806451612903225,2.58,a-picp-i1,2021-22,Narragansett-Narragansett Regional High,07200505,"","","","","","","","", 47.9, 65.3, 42.5, 42.2, 47.0, 50.0, 422 +5.161290322580645,5,a-picp-i1,2021-22,Narragansett-Templeton Elementary School,07200020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 543 +2.549677419354839,2.55,a-picp-i1,2021-22,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605,"","","","","","","","","", 51.5, 47.0, 47.3, 51.7, 49.4, 720 +5.161290322580645,5,a-picp-i1,2021-22,Nashoba-Center School,07250020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 477 +5.161290322580645,5,a-picp-i1,2021-22,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, 707 +5.140645161290323,5,a-picp-i1,2021-22,Nashoba-Hale,07250310,"","","","","","", 100.0, 99.0, 100.0,"","","","", 99.6, 280 +5.140645161290323,5,a-picp-i1,2021-22,Nashoba-Luther Burbank Middle School,07250305,"","","","","","", 100.0, 100.0, 98.7,"","","","", 99.6, 228 +5.161290322580645,5,a-picp-i1,2021-22,Nashoba-Mary Rowlandson Elementary,07250010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 441 +2.96258064516129,2.96,a-picp-i1,2021-22,Nashoba-Nashoba Regional,07250505,"","","","","","","","","", 55.3, 56.3, 55.7, 61.8, 57.4, 886 +5.161290322580645,5,a-picp-i1,2021-22,Natick-Bennett-Hemenway,01980005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 510 +5.161290322580645,5,a-picp-i1,2021-22,Natick-Brown,01980010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 456 +5.150967741935483,5,a-picp-i1,2021-22,Natick-J F Kennedy Middle School,01980305,"","","","","", 100.0, 99.5, 100.0, 99.5,"","","","", 99.8, 870 +5.161290322580645,5,a-picp-i1,2021-22,Natick-Johnson,01980031, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 218 +5.145806451612903,5,a-picp-i1,2021-22,Natick-Lilja Elementary,01980035, 100.0, 98.6, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 390 +5.161290322580645,5,a-picp-i1,2021-22,Natick-Memorial,01980043, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 396 +3.535483870967742,3.54,a-picp-i1,2021-22,Natick-Natick High,01980505,"","","","","","","","","", 89.4, 63.8, 58.0, 62.0, 68.5," 1,547" +5.135483870967742,5,a-picp-i1,2021-22,Natick-Wilson Middle,01980310,"","","","","", 98.9, 99.5, 99.5, 100.0,"","","","", 99.5, 826 +2.849032258064516,2.85,a-picp-i1,2021-22,Nauset-Nauset Regional High,06600505,"","","","","","","","","", 62.6, 56.8, 55.4, 46.4, 55.2, 828 +4.108387096774194,4.11,a-picp-i1,2021-22,Nauset-Nauset Regional Middle,06600305,"","","","","","", 100.0, 68.0, 71.6,"","","","", 79.6, 539 +5.161290322580645,5,a-picp-i1,2021-22,Needham-Broadmeadow,01990005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 519 +5.104516129032258,5,a-picp-i1,2021-22,Needham-High Rock School,01990410,"","","","","","", 98.9,"","","","","","", 98.9, 455 +5.161290322580645,5,a-picp-i1,2021-22,Needham-John Eliot,01990020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 435 +4.00516129032258,4.01,a-picp-i1,2021-22,Needham-Needham High,01990505,"","","","","","","","","", 96.3, 95.5, 72.0, 46.9, 77.6," 1,668" +5.161290322580645,5,a-picp-i1,2021-22,Needham-Newman Elementary,01990050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 602 +4.903225806451613,4.9,a-picp-i1,2021-22,Needham-Pollard Middle,01990405,"","","","","","","", 91.8, 97.8,"","","","", 95.0, 835 +5.161290322580645,5,a-picp-i1,2021-22,Needham-Sunita L. Williams Elementary,01990035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 508 +5.161290322580645,5,a-picp-i1,2021-22,Needham-William Mitchell,01990040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 445 +4.619354838709677,4.62,a-picp-i1,2021-22,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 100.0, 95.3, 97.6, 100.0, 97.9, 96.7, 100.0, 100.0, 100.0, 79.5, 84.0, 68.1, 54.3, 89.5, 764 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Abraham Lincoln,02010095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 656 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Alfred J Gomes,02010063, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 498 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Betsey B Winslow,02010140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 229 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Carlos Pacheco,02010105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 273 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Casimir Pulaski,02010123, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 480 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Charles S Ashley,02010010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 266 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Elizabeth Carter Brooks,02010015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 291 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Ellen R Hathaway,02010075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 222 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Elwyn G Campbell,02010020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 213 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Hayden/McFadden,02010078, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 569 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Irwin M. Jacobs Elementary School,02010070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 347 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-James B Congdon,02010040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 280 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Jireh Swift,02010130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 158 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-John Avery Parker,02010115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 228 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-John B Devalles,02010050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 314 +4.686451612903226,4.69,a-picp-i1,2021-22,New Bedford-Keith Middle School,02010405,"","","","","","", 88.9, 85.1, 97.4,"","","","", 90.8, 941 +3.607741935483871,3.61,a-picp-i1,2021-22,New Bedford-New Bedford High,02010505,"","","","","","","","","", 86.0, 55.2, 76.7, 56.3, 69.9," 2,888" +5.094193548387097,5,a-picp-i1,2021-22,New Bedford-Normandin Middle School,02010410,"","","","","","", 98.9, 99.2, 98.1,"","","","", 98.7," 1,096" +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Renaissance Community Innovation School,02010124, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 130 +4.748387096774193,4.75,a-picp-i1,2021-22,New Bedford-Roosevelt Middle School,02010415,"","","","","","", 87.5, 93.8, 94.6,"","","","", 92.0, 802 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Sgt Wm H Carney Academy,02010045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 552 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-Thomas R Rodman,02010125, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +4.087741935483871,4.09,a-picp-i1,2021-22,New Bedford-Trinity Day Academy,02010510,"","","","", 100.0, 100.0, 100.0, 100.0, 90.9, 100.0, 40.0, 40.0, 70.0, 79.2, 77 +2.96258064516129,2.96,a-picp-i1,2021-22,New Bedford-Whaling City Junior/Senior High School,02010515,"","","","","","","","", 0.0, 60.0, 85.7, 58.3, 57.1, 57.4, 54 +5.161290322580645,5,a-picp-i1,2021-22,New Bedford-William H Taylor,02010135, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 227 +4.175483870967742,4.18,a-picp-i1,2021-22,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305,"","","","","","", 76.7, 98.3, 99.2, 77.4, 67.0, 71.8, 68.7, 80.9, 743 +5.161290322580645,5,a-picp-i1,2021-22,New Salem-Wendell-Swift River,07280015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 116 +5.145806451612903,5,a-picp-i1,2021-22,Newburyport-Edward G. Molin Elementary School,02040030,"","","","", 99.3, 100.0,"","","","","","","", 99.7, 286 +5.161290322580645,5,a-picp-i1,2021-22,Newburyport-Francis T Bresnahan Elementary,02040005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 562 +3.0451612903225804,3.05,a-picp-i1,2021-22,Newburyport-Newburyport High,02040505,"","","","","","","","","", 76.2, 69.5, 41.1, 48.0, 59.0, 796 +5.130322580645162,5,a-picp-i1,2021-22,Newburyport-Rupert A Nock Middle,02040305,"","","","","","", 100.0, 99.4, 98.9,"","","","", 99.4, 490 +5.161290322580645,5,a-picp-i1,2021-22,Newton-A E Angier,02070005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 419 +5.073548387096774,5,a-picp-i1,2021-22,Newton-Bigelow Middle,02070305,"","","","","","", 96.7, 99.4, 98.8,"","","","", 98.3, 477 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Bowen,02070015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 345 +5.161290322580645,5,a-picp-i1,2021-22,Newton-C C Burr,02070020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 354 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Cabot,02070025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 420 +5.109677419354838,5,a-picp-i1,2021-22,Newton-Charles E Brown Middle,02070310,"","","","","","", 97.6, 99.3, 100.0,"","","","", 99.0, 776 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Countryside,02070040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 381 +5.109677419354838,5,a-picp-i1,2021-22,Newton-F A Day Middle,02070315,"","","","","","", 99.0, 98.2, 100.0,"","","","", 99.0, 939 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Franklin,02070055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 403 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Horace Mann,02070075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 369 +5.161290322580645,5,a-picp-i1,2021-22,Newton-John Ward,02070120, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 215 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Lincoln-Eliot,02070070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 326 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Mason-Rice,02070080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 342 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Memorial Spaulding,02070105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 401 +2.5806451612903225,2.58,a-picp-i1,2021-22,Newton-Newton North High,02070505,"","","","","","","","","", 61.6, 56.3, 40.5, 41.4, 50.0," 2,088" +2.750967741935484,2.75,a-picp-i1,2021-22,Newton-Newton South High,02070510,"","","","","","","","","", 55.4, 56.0, 52.9, 49.5, 53.3," 1,859" +4.985806451612903,4.99,a-picp-i1,2021-22,Newton-Oak Hill Middle,02070320,"","","","","","", 98.0, 91.9, 100.0,"","","","", 96.6, 667 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Peirce,02070100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 243 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Underwood,02070115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Williams,02070125, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 220 +5.161290322580645,5,a-picp-i1,2021-22,Newton-Zervas,02070130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 418 +0.0,1,a-picp-i1,2021-22,Norfolk County Agricultural-Norfolk County Agricultural,09150705,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 590 +5.161290322580645,5,a-picp-i1,2021-22,Norfolk-Freeman-Kennedy School,02080005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 545 +5.161290322580645,5,a-picp-i1,2021-22,Norfolk-H Olive Day,02080015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 432 +5.114838709677419,5,a-picp-i1,2021-22,North Adams-Brayton,02090035, 97.4, 96.3, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.1, 220 +5.161290322580645,5,a-picp-i1,2021-22,North Adams-Colegrove Park Elementary,02090008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 228 +3.2361290322580647,3.24,a-picp-i1,2021-22,North Adams-Drury High,02090505,"","","","","","","", 92.0, 95.8, 40.0, 54.2, 32.9, 53.1, 62.7, 512 +5.161290322580645,5,a-picp-i1,2021-22,North Adams-Greylock,02090015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 227 +5.161290322580645,5,a-picp-i1,2021-22,North Andover-Anne Bradstreet Early Childhood Center,02110005, 100.0,"","","","","","","","","","","","", 100.0, 287 +5.161290322580645,5,a-picp-i1,2021-22,North Andover-Annie L Sargent School,02110018,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 462 +5.140645161290323,5,a-picp-i1,2021-22,North Andover-Atkinson,02110001,"", 100.0, 100.0, 98.0, 100.0, 100.0,"","","","","","","", 99.6, 283 +5.161290322580645,5,a-picp-i1,2021-22,North Andover-Franklin,02110010,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 383 +5.161290322580645,5,a-picp-i1,2021-22,North Andover-Kittredge,02110015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 225 +3.664516129032258,3.66,a-picp-i1,2021-22,North Andover-North Andover High,02110505,"","","","","","","","","", 68.3, 81.9, 69.3, 64.6, 71.0," 1,348" +5.114838709677419,5,a-picp-i1,2021-22,North Andover-North Andover Middle,02110305,"","","","","","", 99.4, 98.4, 99.5,"","","","", 99.1," 1,089" +5.161290322580645,5,a-picp-i1,2021-22,North Andover-Thomson,02110020,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 309 +5.161290322580645,5,a-picp-i1,2021-22,North Attleborough-Amvet Boulevard,02120007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 419 +5.161290322580645,5,a-picp-i1,2021-22,North Attleborough-Community,02120030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 278 +5.161290322580645,5,a-picp-i1,2021-22,North Attleborough-Falls,02120010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2021-22,North Attleborough-Joseph W Martin Jr Elementary,02120013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 583 +3.458064516129032,3.46,a-picp-i1,2021-22,North Attleborough-North Attleboro High,02120505,"","","","","","","","","", 67.1, 70.3, 61.8, 68.2, 67.0," 1,153" +5.150967741935483,5,a-picp-i1,2021-22,North Attleborough-North Attleborough Middle,02120305,"","","","","","", 99.4, 100.0, 100.0,"","","","", 99.8, 957 +5.161290322580645,5,a-picp-i1,2021-22,North Attleborough-Roosevelt Avenue,02120015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 255 +5.1251612903225805,5,a-picp-i1,2021-22,North Brookfield-North Brookfield Elementary,02150015, 100.0, 100.0, 100.0, 100.0, 97.1, 100.0, 97.2,"","","","","","", 99.3, 274 +2.2554838709677423,2.26,a-picp-i1,2021-22,North Brookfield-North Brookfield High,02150505,"","","","","","","", 90.0, 80.0, 8.7, 12.1, 27.8, 20.0, 43.7, 174 +5.161290322580645,5,a-picp-i1,2021-22,North Middlesex-Ashby Elementary,07350010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 140 +5.140645161290323,5,a-picp-i1,2021-22,North Middlesex-Hawthorne Brook,07350030,"","","","","", 100.0, 99.2, 100.0, 99.3,"","","","", 99.6, 491 +5.161290322580645,5,a-picp-i1,2021-22,North Middlesex-Nissitissit Middle School,07350310,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 489 +4.15483870967742,4.15,a-picp-i1,2021-22,North Middlesex-North Middlesex Regional,07350505,"","","","","","","","","", 87.5, 76.7, 76.5, 80.0, 80.5, 799 +5.161290322580645,5,a-picp-i1,2021-22,North Middlesex-Spaulding Memorial,07350005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 452 +0.0,1,a-picp-i1,2021-22,North Middlesex-Squannacook Early Childhood Center,07350002,"", 0.0, 0.0,"", 0.0,"","","","","","","","", 0.0, 10 +5.161290322580645,5,a-picp-i1,2021-22,North Middlesex-Varnum Brook,07350035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 576 +5.161290322580645,5,a-picp-i1,2021-22,North Reading-E Ethel Little School,02170003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 272 +5.161290322580645,5,a-picp-i1,2021-22,North Reading-J Turner Hood,02170010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 331 +5.161290322580645,5,a-picp-i1,2021-22,North Reading-L D Batchelder,02170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 464 +2.8283870967741933,2.83,a-picp-i1,2021-22,North Reading-North Reading High,02170505,"","","","","","","","","", 26.0, 53.9, 57.4, 82.7, 54.8, 635 +5.016774193548387,5,a-picp-i1,2021-22,North Reading-North Reading Middle,02170305,"","","","","","", 97.9, 96.0, 97.4,"","","","", 97.2, 564 +4.449032258064516,4.45,a-picp-i1,2021-22,Northampton-Bridge Street,02100005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.2, 232 +4.469677419354839,4.47,a-picp-i1,2021-22,Northampton-Jackson Street,02100020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.6, 305 +5.027096774193549,5,a-picp-i1,2021-22,Northampton-John F Kennedy Middle School,02100410,"","","","","","", 97.3, 96.9, 98.1,"","","","", 97.4, 586 +4.449032258064516,4.45,a-picp-i1,2021-22,Northampton-Leeds,02100025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.2, 268 +2.8851612903225807,2.89,a-picp-i1,2021-22,Northampton-Northampton High,02100505,"","","","","","","","","", 55.7, 62.3, 55.3, 50.9, 55.9, 905 +4.345806451612903,4.35,a-picp-i1,2021-22,Northampton-R. K. Finn Ryan Road,02100029, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.2, 247 +3.2361290322580647,3.24,a-picp-i1,2021-22,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705,"","","","","","","","","", 99.3, 94.0, 7.8, 40.7, 62.7, 555 +2.394838709677419,2.39,a-picp-i1,2021-22,Northboro-Southboro-Algonquin Regional High,07300505,"","","","","","","","","", 60.9, 48.1, 32.1, 45.6, 46.4," 1,256" +5.161290322580645,5,a-picp-i1,2021-22,Northborough-Fannie E Proctor,02130015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 257 +5.161290322580645,5,a-picp-i1,2021-22,Northborough-Lincoln Street,02130003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 272 +5.161290322580645,5,a-picp-i1,2021-22,Northborough-Marguerite E Peaslee,02130014, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +5.161290322580645,5,a-picp-i1,2021-22,Northborough-Marion E Zeh,02130020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 253 +5.130322580645162,5,a-picp-i1,2021-22,Northborough-Robert E. Melican Middle School,02130305,"","","","","","", 100.0, 98.3, 100.0,"","","","", 99.4, 529 +5.161290322580645,5,a-picp-i1,2021-22,Northbridge-Northbridge Elementary School,02140001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 856 +4.041290322580645,4.04,a-picp-i1,2021-22,Northbridge-Northbridge High,02140505,"","","","","","","","","", 74.8, 78.6, 70.7, 88.7, 78.3, 539 +4.655483870967742,4.66,a-picp-i1,2021-22,Northbridge-Northbridge Middle,02140305,"","","","","","", 98.1, 100.0, 73.8,"","","","", 90.2, 520 +0.3406451612903226,1,a-picp-i1,2021-22,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605,"","","","","","","","","", 0.0, 7.7, 6.6, 13.2, 6.6," 1,324" +0.0,1,a-picp-i1,2021-22,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 530 +5.145806451612903,5,a-picp-i1,2021-22,Norton-Henri A. Yelle,02180060,"","","","", 100.0, 99.4,"","","","","","","", 99.7, 357 +5.161290322580645,5,a-picp-i1,2021-22,Norton-J C Solmonese,02180015, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 383 +5.140645161290323,5,a-picp-i1,2021-22,Norton-L G Nourse Elementary,02180010, 100.0, 100.0, 100.0, 98.4,"","","","","","","","","", 99.6, 276 +3.59741935483871,3.6,a-picp-i1,2021-22,Norton-Norton High,02180505,"","","","","","","","","", 55.8, 79.7, 72.6, 70.4, 69.7, 664 +5.094193548387097,5,a-picp-i1,2021-22,Norton-Norton Middle,02180305,"","","","","","", 97.2, 99.0, 99.5,"","","","", 98.7, 593 +5.161290322580645,5,a-picp-i1,2021-22,Norwell-Grace Farrar Cole,02190005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 507 +3.5303225806451617,3.53,a-picp-i1,2021-22,Norwell-Norwell High,02190505,"","","","","","","","","", 83.8, 65.2, 75.7, 50.3, 68.4, 630 +5.109677419354838,5,a-picp-i1,2021-22,Norwell-Norwell Middle School,02190405,"","","","","","", 98.9, 98.2, 100.0,"","","","", 99.0, 502 +5.161290322580645,5,a-picp-i1,2021-22,Norwell-William G Vinal,02190020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 509 +5.161290322580645,5,a-picp-i1,2021-22,Norwood-Balch,02200005,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 315 +4.929032258064516,4.93,a-picp-i1,2021-22,Norwood-Charles J Prescott,02200025, 0.0, 92.6, 98.0, 100.0, 100.0, 100.0,"","","","","","","", 95.5, 243 +5.161290322580645,5,a-picp-i1,2021-22,Norwood-Cornelius M Callahan,02200010,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 227 +4.877419354838709,4.88,a-picp-i1,2021-22,Norwood-Dr. Philip O. Coakley Middle School,02200305,"","","","","","", 95.0, 97.1, 91.2,"","","","", 94.5, 729 +5.161290322580645,5,a-picp-i1,2021-22,Norwood-F A Cleveland,02200015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 307 +5.161290322580645,5,a-picp-i1,2021-22,Norwood-George F. Willett,02200075, 100.0,"","","","","","","","","","","","", 100.0, 258 +5.006451612903226,5,a-picp-i1,2021-22,Norwood-John P Oldham,02200020,"", 100.0, 88.6, 100.0, 98.0, 95.8,"","","","","","","", 97.0, 264 +2.9522580645161294,2.95,a-picp-i1,2021-22,Norwood-Norwood High,02200505,"","","","","","","","","", 79.8, 68.0, 44.4, 39.8, 57.2, 998 +4.918709677419355,4.92,a-picp-i1,2021-22,Oak Bluffs-Oak Bluffs Elementary,02210005, 100.0, 100.0, 97.3, 95.8, 100.0, 96.5, 84.5, 89.5, 100.0,"","","","", 95.3, 426 +0.43870967741935485,1,a-picp-i1,2021-22,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605,"","","","","","","","","", 5.6, 7.7, 9.9, 11.1, 8.5, 552 +2.9780645161290322,2.98,a-picp-i1,2021-22,Old Rochester-Old Rochester Regional High,07400505,"","","","","","","","","", 66.2, 61.9, 48.8, 55.4, 57.7, 679 +5.109677419354838,5,a-picp-i1,2021-22,Old Rochester-Old Rochester Regional Jr High,07400405,"","","","","","","", 99.0, 99.1,"","","","", 99.0, 416 +3.870967741935484,3.87,a-picp-i1,2021-22,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0,"","","","","", 75.0, 320 +5.161290322580645,5,a-picp-i1,2021-22,Orange-Dexter Park,02230010,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 283 +5.161290322580645,5,a-picp-i1,2021-22,Orange-Fisher Hill,02230015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 193 +5.161290322580645,5,a-picp-i1,2021-22,Orleans-Orleans Elementary,02240005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 164 +5.161290322580645,5,a-picp-i1,2021-22,Oxford-Alfred M Chaffee,02260010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 287 +5.161290322580645,5,a-picp-i1,2021-22,Oxford-Clara Barton,02260005,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 213 +3.6696774193548385,3.67,a-picp-i1,2021-22,Oxford-Oxford High,02260505,"","","","","","","","", 82.2, 73.8, 70.2, 56.3, 68.5, 71.1, 515 +5.063225806451612,5,a-picp-i1,2021-22,Oxford-Oxford Middle,02260405,"","","","","", 97.4, 99.3, 97.6,"","","","","", 98.1, 412 +5.078709677419355,5,a-picp-i1,2021-22,Palmer-Old Mill Pond,02270008, 96.7, 96.1, 97.2, 100.0, 100.0, 100.0,"","","","","","","", 98.4, 575 +4.015483870967742,4.02,a-picp-i1,2021-22,Palmer-Palmer High,02270505,"","","","","","", 96.6, 96.0, 94.7, 78.5, 58.2, 57.6, 38.9, 77.8, 585 +0.64,1,a-picp-i1,2021-22,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605,"","","","","","","","","", 0.0, 0.0, 20.4, 36.6, 12.4, 611 +5.145806451612903,5,a-picp-i1,2021-22,Peabody-Captain Samuel Brown,02290005, 100.0, 100.0, 100.0, 98.0, 100.0, 100.0,"","","","","","","", 99.7, 359 +5.161290322580645,5,a-picp-i1,2021-22,Peabody-Center,02290015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 422 +5.042580645161291,5,a-picp-i1,2021-22,Peabody-J Henry Higgins Middle,02290305,"","","","","","", 96.0, 98.5, 98.4,"","","","", 97.7," 1,426" +5.161290322580645,5,a-picp-i1,2021-22,Peabody-John E Burke,02290007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 245 +5.161290322580645,5,a-picp-i1,2021-22,Peabody-John E. McCarthy,02290016, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 212 +1.8838709677419354,1.88,a-picp-i1,2021-22,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.5, 104 +2.689032258064516,2.69,a-picp-i1,2021-22,Peabody-Peabody Veterans Memorial High,02290510,"","","","","","","","","", 60.8, 43.7, 51.0, 53.0, 52.1," 1,445" +5.161290322580645,5,a-picp-i1,2021-22,Peabody-South Memorial,02290035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +5.161290322580645,5,a-picp-i1,2021-22,Peabody-Thomas Carroll,02290010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 583 +5.161290322580645,5,a-picp-i1,2021-22,Peabody-West Memorial,02290045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2021-22,Peabody-William A Welch Sr,02290027, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 324 +5.161290322580645,5,a-picp-i1,2021-22,Pelham-Pelham Elementary,02300005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 120 +5.161290322580645,5,a-picp-i1,2021-22,Pembroke-Bryantville Elementary,02310003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 440 +5.161290322580645,5,a-picp-i1,2021-22,Pembroke-Hobomock Elementary,02310010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 410 +5.161290322580645,5,a-picp-i1,2021-22,Pembroke-North Pembroke Elementary,02310015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 448 +5.047741935483871,5,a-picp-i1,2021-22,Pembroke-Pembroke Community Middle School,02310305,"","","","","","","", 97.7, 98.0,"","","","", 97.8, 416 +3.0761290322580646,3.08,a-picp-i1,2021-22,Pembroke-Pembroke High School,02310505,"","","","","","","","","", 62.7, 53.8, 47.4, 74.2, 59.6, 775 +5.161290322580645,5,a-picp-i1,2021-22,Pentucket-Dr Frederick N Sweetsir,07450020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 182 +5.161290322580645,5,a-picp-i1,2021-22,Pentucket-Dr John C Page School,07450015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 274 +5.161290322580645,5,a-picp-i1,2021-22,Pentucket-Elmer S Bagnall,07450005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 444 +5.161290322580645,5,a-picp-i1,2021-22,Pentucket-Helen R Donaghue School,07450010,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 249 +3.881290322580645,3.88,a-picp-i1,2021-22,Pentucket-Pentucket Regional Middle,07450405,"","","","","","","", 94.6, 51.0,"","","","", 75.2, 335 +3.5716129032258066,3.57,a-picp-i1,2021-22,Pentucket-Pentucket Regional Sr High,07450505,"","","","","","","","","", 78.1, 73.4, 61.6, 64.8, 69.2, 633 +5.161290322580645,5,a-picp-i1,2021-22,Petersham-Petersham Center,02340005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 117 +0.0,1,a-picp-i1,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, 144 +0.0,1,a-picp-i1,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, 148 +0.0,1,a-picp-i1,2021-22,Phoenix Charter Academy (District)-Phoenix Charter Academy,04930505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 58 +4.624516129032258,4.62,a-picp-i1,2021-22,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 100.0, 100.0, 98.5, 100.0, 100.0, 100.0, 100.0, 98.5, 100.0, 0.0, 98.0, 70.2, 88.7, 89.6, 796 +2.849032258064516,2.85,a-picp-i1,2021-22,Pioneer Charter School of Science II (PCSS-II) (District)-Pioneer Charter School of Science II (PCSS-II),35060505,"","","","","","","", 98.7, 93.3, 0.0, 0.0, 37.5, 81.7, 55.2, 382 +4.696774193548387,4.7,a-picp-i1,2021-22,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 9.5, 25.0, 91.0, 553 +5.150967741935483,5,a-picp-i1,2021-22,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505,"","","","","","","", 100.0, 98.7, 100.0, 100.0, 100.0, 100.0, 99.8, 404 +5.161290322580645,5,a-picp-i1,2021-22,Pioneer Valley-Bernardston Elementary,07500006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 163 +5.161290322580645,5,a-picp-i1,2021-22,Pioneer Valley-Northfield Elementary,07500008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 186 +4.051612903225807,4.05,a-picp-i1,2021-22,Pioneer Valley-Pioneer Valley Regional,07500505,"","","","","","","", 98.2, 100.0, 61.0, 80.0, 49.0, 72.0, 78.5, 265 +5.161290322580645,5,a-picp-i1,2021-22,Pittsfield-Allendale,02360010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 235 +4.701935483870967,4.7,a-picp-i1,2021-22,Pittsfield-Crosby,02360065, 77.1, 97.9, 100.0, 100.0, 85.4, 87.2,"","","","","","","", 91.1, 246 +0.0,1,a-picp-i1,2021-22,Pittsfield-Crosby Educational Academy,02360030,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","","", 0.0, 15 +2.1729032258064516,2.17,a-picp-i1,2021-22,Pittsfield-Eagle Education Academy,02360525,"","","","","","", 100.0, 100.0,"", 0.0, 0.0, 0.0, 50.0, 42.1, 19 +4.918709677419355,4.92,a-picp-i1,2021-22,Pittsfield-Egremont,02360035, 97.3, 92.0, 93.8, 95.9, 94.5, 97.1,"","","","","","","", 95.3, 403 +4.660645161290322,4.66,a-picp-i1,2021-22,Pittsfield-John T Reid Middle,02360305,"","","","","","", 92.0, 94.9, 84.3,"","","","", 90.3, 454 +5.161290322580645,5,a-picp-i1,2021-22,Pittsfield-Morningside Community School,02360055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 307 +3.1948387096774193,3.19,a-picp-i1,2021-22,Pittsfield-Pittsfield High,02360505,"","","","","","","","","", 65.3, 61.0, 44.1, 74.6, 61.9, 645 +5.047741935483871,5,a-picp-i1,2021-22,Pittsfield-Pittsfield Public Virtual Academy,02360705, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 93.3, 100.0, 100.0, 100.0, 100.0, 86.7, 92.9, 97.8, 179 +5.161290322580645,5,a-picp-i1,2021-22,Pittsfield-Robert T. Capeless Elementary School,02360045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 149 +5.161290322580645,5,a-picp-i1,2021-22,Pittsfield-Silvio O Conte Community,02360105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 293 +5.161290322580645,5,a-picp-i1,2021-22,Pittsfield-Stearns,02360090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 208 +1.4296774193548387,1.43,a-picp-i1,2021-22,Pittsfield-Taconic High,02360510,"","","","","","","","","", 35.3, 31.6, 14.3, 28.2, 27.7, 810 +4.015483870967742,4.02,a-picp-i1,2021-22,Pittsfield-Theodore Herberg Middle,02360310,"","","","","","", 83.0, 87.4, 62.6,"","","","", 77.8, 464 +5.161290322580645,5,a-picp-i1,2021-22,Pittsfield-Williams,02360100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 242 +5.161290322580645,5,a-picp-i1,2021-22,Plainville-Anna Ware Jackson,02380010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 237 +5.161290322580645,5,a-picp-i1,2021-22,Plainville-Beatrice H Wood Elementary,02380005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 355 +5.161290322580645,5,a-picp-i1,2021-22,Plymouth-Cold Spring,02390005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 229 +5.161290322580645,5,a-picp-i1,2021-22,Plymouth-Federal Furnace School,02390011, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 374 +5.161290322580645,5,a-picp-i1,2021-22,Plymouth-Hedge,02390010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 202 +5.150967741935483,5,a-picp-i1,2021-22,Plymouth-Indian Brook,02390012, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","","","","", 99.8, 564 +5.161290322580645,5,a-picp-i1,2021-22,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,2021-22,Plymouth-Nathaniel Morton Elementary,02390030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 513 +4.918709677419355,4.92,a-picp-i1,2021-22,Plymouth-Plymouth Commun Intermediate,02390405,"","","","","","", 99.6, 95.4, 91.9,"","","","", 95.3, 934 +3.298064516129032,3.3,a-picp-i1,2021-22,Plymouth-Plymouth North High,02390505,"","","","","","","","","", 70.2, 54.5, 55.8, 73.8, 63.9," 1,317" +2.3845161290322583,2.38,a-picp-i1,2021-22,Plymouth-Plymouth South High,02390515,"","","","","","","","","", 47.1, 38.7, 47.6, 51.5, 46.2," 1,042" +5.006451612903226,5,a-picp-i1,2021-22,Plymouth-Plymouth South Middle,02390305,"","","","","","", 98.6, 95.9, 96.5,"","","","", 97.0, 673 +5.161290322580645,5,a-picp-i1,2021-22,Plymouth-South Elementary,02390046, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 639 +5.161290322580645,5,a-picp-i1,2021-22,Plymouth-West Elementary,02390047, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2021-22,Plympton-Dennett Elementary,02400010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 239 +1.3987096774193548,1.4,a-picp-i1,2021-22,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, 87.9, 75.0, 54.2, 43.0, 48.8, 35.6, 27.1," 1,061" +4.433548387096774,4.43,a-picp-i1,2021-22,Provincetown-Provincetown Schools,02420020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 81.8, 30.0,"","","","", 85.9, 128 +5.161290322580645,5,a-picp-i1,2021-22,Quabbin-Hardwick Elementary,07530005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 162 +5.161290322580645,5,a-picp-i1,2021-22,Quabbin-Hubbardston Center,07530010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 273 +5.058064516129032,5,a-picp-i1,2021-22,Quabbin-New Braintree Grade,07530020, 100.0, 96.4,"","","","","","","","","","","", 98.0, 50 +5.12,5,a-picp-i1,2021-22,Quabbin-Oakham Center,07530025,"","", 100.0, 100.0, 97.7, 100.0,"","","","","","","", 99.2, 126 +3.344516129032258,3.34,a-picp-i1,2021-22,Quabbin-Quabbin Regional High School,07530505,"","","","","","","","","", 68.4, 68.6, 52.5, 68.4, 64.8, 610 +5.047741935483871,5,a-picp-i1,2021-22,Quabbin-Quabbin Regional Middle School,07530405,"","","","","","", 99.4, 97.0, 97.3,"","","","", 97.8, 541 +5.052903225806452,5,a-picp-i1,2021-22,Quabbin-Ruggles Lane,07530030, 100.0, 94.9, 97.2, 98.0, 100.0, 97.9,"","","","","","","", 97.9, 340 +2.838709677419355,2.84,a-picp-i1,2021-22,Quaboag Regional-Quaboag Regional High,07780505,"","","","","","","","","", 59.5, 43.7, 59.6, 57.3, 55.0, 340 +5.032258064516129,5,a-picp-i1,2021-22,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305,"","","","","","","", 95.2, 100.0,"","","","", 97.5, 204 +5.145806451612903,5,a-picp-i1,2021-22,Quaboag Regional-Warren Elementary,07780005, 100.0, 100.0, 100.0, 97.4, 100.0, 100.0, 100.0,"","","","","","", 99.7, 347 +5.161290322580645,5,a-picp-i1,2021-22,Quaboag Regional-West Brookfield Elementary,07780010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 232 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Atherton Hough,02430040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 256 +5.140645161290323,5,a-picp-i1,2021-22,Quincy-Atlantic Middle,02430305,"","","","","","", 99.4, 100.0, 99.4,"","","","", 99.6, 538 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Beechwood Knoll Elementary,02430020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 343 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Broad Meadows Middle,02430310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 326 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Central Middle,02430315,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 655 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Charles A Bernazzani Elementary,02430025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Clifford H Marshall Elementary,02430055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 500 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Francis W Parker,02430075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 312 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Lincoln-Hancock Community School,02430035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 562 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Merrymount,02430060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 322 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Montclair,02430065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 440 +1.7651612903225808,1.77,a-picp-i1,2021-22,Quincy-North Quincy High,02430510,"","","","","","","","","", 49.6, 32.1, 29.9, 24.5, 34.2," 1,414" +5.145806451612903,5,a-picp-i1,2021-22,Quincy-Point Webster Middle,02430325,"","","","","", 100.0, 98.7, 100.0, 100.0,"","","","", 99.7, 371 +1.8270967741935482,1.83,a-picp-i1,2021-22,Quincy-Quincy High,02430505,"","","","","","","","","", 44.1, 42.0, 29.4, 27.1, 35.4," 1,515" +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Snug Harbor Community School,02430090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 296 +5.140645161290323,5,a-picp-i1,2021-22,Quincy-South West Middle School,02430320,"","","","","", 99.0, 100.0, 100.0, 99.2,"","","","", 99.6, 460 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Squantum,02430095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 354 +5.161290322580645,5,a-picp-i1,2021-22,Quincy-Wollaston School,02430110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 328 +4.263225806451612,4.26,a-picp-i1,2021-22,Ralph C Mahar-Ralph C Mahar Regional,07550505,"","","","","","","", 91.8, 92.4, 77.1, 78.4, 66.7, 81.3, 82.6, 556 +5.078709677419355,5,a-picp-i1,2021-22,Randolph-Elizabeth G Lyons Elementary,02440020, 96.2, 100.0, 96.2, 97.9, 100.0, 100.0,"","","","","","","", 98.4, 305 +5.145806451612903,5,a-picp-i1,2021-22,Randolph-J F Kennedy Elementary,02440018, 98.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 315 +5.161290322580645,5,a-picp-i1,2021-22,Randolph-Margaret L Donovan,02440015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 413 +4.975483870967742,4.98,a-picp-i1,2021-22,Randolph-Martin E Young Elementary,02440040, 94.1, 92.9, 93.3, 100.0, 100.0, 100.0,"","","","","","","", 96.4, 248 +4.634838709677419,4.63,a-picp-i1,2021-22,Randolph-Randolph Community Middle,02440410,"","","","","","", 82.2, 86.5, 99.6,"","","","", 89.8, 660 +3.5716129032258066,3.57,a-picp-i1,2021-22,Randolph-Randolph High,02440505,"","","","","","","","","", 68.6, 77.3, 66.9, 63.4, 69.2, 617 +5.161290322580645,5,a-picp-i1,2021-22,Reading-Alice M Barrows,02460002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 356 +5.083870967741936,5,a-picp-i1,2021-22,Reading-Arthur W Coolidge Middle,02460305,"","","","","","", 99.3, 97.9, 98.4,"","","","", 98.5, 402 +5.161290322580645,5,a-picp-i1,2021-22,Reading-Birch Meadow,02460005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 336 +5.161290322580645,5,a-picp-i1,2021-22,Reading-J Warren Killam,02460017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 403 +5.161290322580645,5,a-picp-i1,2021-22,Reading-Joshua Eaton,02460010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 375 +2.9316129032258065,2.93,a-picp-i1,2021-22,Reading-Reading Memorial High,02460505,"","","","","","","","","", 69.7, 75.9, 42.3, 41.2, 56.8," 1,143" +5.021935483870967,5,a-picp-i1,2021-22,Reading-Walter S Parker Middle,02460310,"","","","","","", 98.8, 99.4, 93.5,"","","","", 97.3, 484 +5.161290322580645,5,a-picp-i1,2021-22,Reading-Wood End Elementary School,02460020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 251 +5.156129032258065,5,a-picp-i1,2021-22,Revere-A. C. Whelan Elementary School,02480003, 100.0, 100.0, 100.0, 100.0, 99.3, 100.0,"","","","","","","", 99.9, 755 +5.161290322580645,5,a-picp-i1,2021-22,Revere-Abraham Lincoln,02480025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 526 +5.161290322580645,5,a-picp-i1,2021-22,Revere-Beachmont Veterans Memorial School,02480013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2021-22,Revere-Garfield Elementary School,02480056, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 645 +5.052903225806452,5,a-picp-i1,2021-22,Revere-Garfield Middle School,02480057,"","","","","","", 100.0, 95.2, 98.5,"","","","", 97.9, 574 +5.150967741935483,5,a-picp-i1,2021-22,Revere-Paul Revere,02480050, 100.0, 100.0, 100.0, 98.6, 100.0, 100.0,"","","","","","","", 99.8, 471 +1.5948387096774193,1.59,a-picp-i1,2021-22,Revere-Revere High,02480505,"","","","","","","","","", 6.1, 16.4, 55.7, 67.1, 30.9," 2,095" +4.944516129032258,4.94,a-picp-i1,2021-22,Revere-Rumney Marsh Academy,02480014,"","","","","","", 96.4, 95.6, 95.5,"","","","", 95.8, 577 +1.9870967741935484,1.99,a-picp-i1,2021-22,Revere-Seacoast School,02480520,"","","","","","","","","", 50.0, 42.9, 53.8, 30.8, 38.5, 65 +5.161290322580645,5,a-picp-i1,2021-22,Revere-Staff Sargent James J. Hill Elementary School,02480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 652 +5.021935483870967,5,a-picp-i1,2021-22,Revere-Susan B. Anthony Middle School,02480305,"","","","","","", 97.5, 94.5, 100.0,"","","","", 97.3, 595 +5.161290322580645,5,a-picp-i1,2021-22,Richmond-Richmond Consolidated,02490005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 142 +4.88258064516129,4.88,a-picp-i1,2021-22,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305,"","","","","", 97.8, 100.0, 100.0, 100.0, 98.7, 98.4, 64.3, 92.1, 94.6, 651 +5.161290322580645,5,a-picp-i1,2021-22,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, 284 +5.130322580645162,5,a-picp-i1,2021-22,Rochester-Rochester Memorial,02500005, 98.2, 100.0, 98.5, 100.0, 100.0, 100.0, 98.8,"","","","","","", 99.4, 501 +5.12,5,a-picp-i1,2021-22,Rockland-Jefferson Elementary School,02510060, 98.0, 97.6, 100.0, 100.0, 100.0,"","","","","","","","", 99.2, 237 +2.771612903225807,2.77,a-picp-i1,2021-22,Rockland-John W Rogers Middle,02510305,"","","","","", 98.9, 99.5, 10.5, 8.4,"","","","", 53.7, 754 +5.161290322580645,5,a-picp-i1,2021-22,Rockland-Memorial Park,02510020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 253 +5.130322580645162,5,a-picp-i1,2021-22,Rockland-R Stewart Esten,02510025, 97.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.4, 333 +2.895483870967742,2.9,a-picp-i1,2021-22,Rockland-Rockland Senior High,02510505,"","","","","","","","","", 75.3, 48.2, 41.4, 57.4, 56.1, 574 +5.161290322580645,5,a-picp-i1,2021-22,Rockport-Rockport Elementary,02520005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 290 +3.6335483870967744,3.63,a-picp-i1,2021-22,Rockport-Rockport High,02520510,"","","","","","","","","", 66.7, 67.2, 76.7, 70.7, 70.4, 233 +5.161290322580645,5,a-picp-i1,2021-22,Rockport-Rockport Middle,02520305,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 207 +5.161290322580645,5,a-picp-i1,2021-22,Rowe-Rowe Elementary,02530005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 61 +4.856774193548387,4.86,a-picp-i1,2021-22,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505,"","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 64.2, 66.7, 94.1," 1,443" +4.418064516129032,4.42,a-picp-i1,2021-22,Salem Academy Charter (District)-Salem Academy Charter School,04850485,"","","","","","", 100.0, 100.0, 98.6, 69.2, 87.9, 77.5, 65.6, 85.6, 494 +5.099354838709678,5,a-picp-i1,2021-22,Salem-Bates,02580003, 98.0, 97.9, 98.3, 98.2, 100.0, 100.0,"","","","","","","", 98.8, 345 +5.161290322580645,5,a-picp-i1,2021-22,Salem-Bentley Academy Innovation School,02580010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 303 +5.161290322580645,5,a-picp-i1,2021-22,Salem-Carlton,02580015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 246 +5.083870967741936,5,a-picp-i1,2021-22,Salem-Collins Middle,02580305,"","","","","","", 97.7, 99.1, 98.7,"","","","", 98.5, 659 +5.161290322580645,5,a-picp-i1,2021-22,Salem-Horace Mann Laboratory,02580030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 271 +1.0116129032258065,1.01,a-picp-i1,2021-22,Salem-New Liberty Innovation School,02580510,"","","","","","","","","", 80.0, 11.1, 27.8, 0.0, 19.6, 51 +0.0,1,a-picp-i1,2021-22,Salem-Salem Early Childhood,02580001, 0.0,"","","","","","","","","","","","", 0.0, 9 +2.131612903225806,2.13,a-picp-i1,2021-22,Salem-Salem High,02580505,"","","","","","","","","", 45.4, 48.8, 34.4, 34.2, 41.3, 818 +0.8619354838709677,1,a-picp-i1,2021-22,Salem-Salem Prep High School,02580515,"","","","","","","","", 0.0, 66.7, 0.0, 25.0, 0.0, 16.7, 18 +5.104516129032258,5,a-picp-i1,2021-22,Salem-Saltonstall School,02580050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 95.1, 97.8, 97.6,"","","","", 98.9, 369 +5.161290322580645,5,a-picp-i1,2021-22,Salem-Witchcraft Heights,02580070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 465 +5.150967741935483,5,a-picp-i1,2021-22,Sandwich-Forestdale School,02610002, 100.0, 100.0, 99.3,"","","","","","","","","","", 99.8, 460 +5.161290322580645,5,a-picp-i1,2021-22,Sandwich-Oak Ridge,02610025,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 734 +3.767741935483871,3.77,a-picp-i1,2021-22,Sandwich-Sandwich High,02610505,"","","","","","","","","", 76.5, 70.1, 68.6, 76.5, 73.0, 618 +5.083870967741936,5,a-picp-i1,2021-22,Sandwich-Sandwich STEM Academy,02610305,"","","","","","","", 99.4, 97.7,"","","","", 98.5, 398 +5.032258064516129,5,a-picp-i1,2021-22,Saugus-Belmonte STEAM Academy,02620060,"","", 100.0, 100.0, 100.0, 90.1,"","","","","","","", 97.5, 754 +3.468387096774194,3.47,a-picp-i1,2021-22,Saugus-Saugus High,02620505,"","","","","","","","","", 85.6, 64.2, 55.2, 63.6, 67.2, 716 +4.665806451612903,4.67,a-picp-i1,2021-22,Saugus-Saugus Middle School,02620305,"","","","","","", 95.7, 98.0, 78.6,"","","","", 90.4, 634 +2.7561290322580643,2.76,a-picp-i1,2021-22,Saugus-Veterans Early Learning Center,02620065, 1.3, 100.0,"","","","","","","","","","","", 53.4, 326 +5.161290322580645,5,a-picp-i1,2021-22,Savoy-Emma L Miller Elementary School,02630010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 48 +5.161290322580645,5,a-picp-i1,2021-22,Scituate-Cushing Elementary,02640007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 326 +5.073548387096774,5,a-picp-i1,2021-22,Scituate-Gates Middle School,02640305,"","","","","","", 99.0, 98.0, 97.9,"","","","", 98.3, 598 +5.161290322580645,5,a-picp-i1,2021-22,Scituate-Hatherly Elementary,02640010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2021-22,Scituate-Jenkins Elementary School,02640015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +3.5509677419354837,3.55,a-picp-i1,2021-22,Scituate-Scituate High School,02640505,"","","","","","","","","", 76.8, 76.4, 56.5, 65.3, 68.8, 859 +5.161290322580645,5,a-picp-i1,2021-22,Scituate-Wampatuck Elementary,02640020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +4.887741935483871,4.89,a-picp-i1,2021-22,Seekonk-Dr. Kevin M. Hurley Middle School,02650405,"","","","","","", 97.5, 89.4, 97.3,"","","","", 94.7, 456 +5.161290322580645,5,a-picp-i1,2021-22,Seekonk-George R Martin,02650007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 460 +5.161290322580645,5,a-picp-i1,2021-22,Seekonk-Mildred Aitken School,02650015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 535 +3.912258064516129,3.91,a-picp-i1,2021-22,Seekonk-Seekonk High,02650505,"","","","","","","","","", 67.3, 84.6, 80.6, 73.2, 75.8, 596 +5.161290322580645,5,a-picp-i1,2021-22,Sharon-Cottage Street,02660005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 448 +5.150967741935483,5,a-picp-i1,2021-22,Sharon-East Elementary,02660010, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 479 +5.161290322580645,5,a-picp-i1,2021-22,Sharon-Heights Elementary,02660015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 543 +3.184516129032258,3.18,a-picp-i1,2021-22,Sharon-Sharon High,02660505,"","","","","","","","","", 81.8, 77.4, 46.1, 45.5, 61.7," 1,132" +5.114838709677419,5,a-picp-i1,2021-22,Sharon-Sharon Middle,02660305,"","","","","","", 98.6, 99.7, 99.0,"","","","", 99.1, 886 +0.5729032258064516,1,a-picp-i1,2021-22,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605,"","","","","","","","","", 10.0, 10.8, 11.3, 12.5, 11.1," 1,305" +5.161290322580645,5,a-picp-i1,2021-22,Sherborn-Pine Hill,02690010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +5.140645161290323,5,a-picp-i1,2021-22,Shrewsbury-Calvin Coolidge School,02710015, 98.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.6, 257 +5.150967741935483,5,a-picp-i1,2021-22,Shrewsbury-Floral Street School,02710020, 100.0, 100.0, 100.0, 99.1, 100.0,"","","","","","","","", 99.8, 517 +5.161290322580645,5,a-picp-i1,2021-22,Shrewsbury-Major Howard W. Beal School,02710005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 597 +5.0683870967741935,5,a-picp-i1,2021-22,Shrewsbury-Oak Middle School,02710030,"","","","","","","", 98.4, 98.0,"","","","", 98.2, 996 +5.1251612903225805,5,a-picp-i1,2021-22,Shrewsbury-Sherwood Middle School,02710305,"","","","","", 99.4, 99.2,"","","","","","", 99.3, 982 +2.544516129032258,2.54,a-picp-i1,2021-22,Shrewsbury-Shrewsbury High School,02710505,"","","","","","","","","", 56.9, 44.4, 40.7, 55.0, 49.3," 1,837" +5.161290322580645,5,a-picp-i1,2021-22,Shrewsbury-Spring Street School,02710035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 301 +5.161290322580645,5,a-picp-i1,2021-22,Shrewsbury-Walter J. Paton School,02710025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 314 +5.161290322580645,5,a-picp-i1,2021-22,Shutesbury-Shutesbury Elementary,02720005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 99 +2.209032258064516,2.21,a-picp-i1,2021-22,Silver Lake-Silver Lake Regional High,07600505,"","","","","","","","","", 40.8, 43.7, 39.0, 47.9, 42.8," 1,054" +4.273548387096774,4.27,a-picp-i1,2021-22,Silver Lake-Silver Lake Regional Middle School,07600405,"","","","","","","", 98.4, 68.3,"","","","", 82.8, 518 +3.52,3.52,a-picp-i1,2021-22,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505,"","","","","","","", 83.1, 79.7, 80.9, 43.1, 66.0, 39.0, 68.2, 359 +3.127741935483871,3.13,a-picp-i1,2021-22,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505,"","","","","","","","","", 58.5, 58.6, 54.9, 70.5, 60.6, 999 +5.161290322580645,5,a-picp-i1,2021-22,Somerset-Chace Street,02730005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2021-22,Somerset-North Elementary,02730008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 421 +5.083870967741936,5,a-picp-i1,2021-22,Somerset-Somerset Middle School,02730305,"","","","","","", 98.8, 99.0, 97.9,"","","","", 98.5, 598 +5.161290322580645,5,a-picp-i1,2021-22,Somerset-South,02730015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 265 +5.140645161290323,5,a-picp-i1,2021-22,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.5, 100.0,"","","","", 99.6, 545 +5.150967741935483,5,a-picp-i1,2021-22,Somerville-Arthur D Healey,02740075, 98.1, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.8, 478 +5.135483870967742,5,a-picp-i1,2021-22,Somerville-Benjamin G Brown,02740015, 100.0, 97.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 188 +5.063225806451612,5,a-picp-i1,2021-22,Somerville-Capuano Early Childhood Center,02740005, 98.1,"","","","","","","","","","","","", 98.1, 52 +5.140645161290323,5,a-picp-i1,2021-22,Somerville-E Somerville Community,02740111, 98.4, 98.7, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6, 100.0,"","","","", 99.6, 689 +4.655483870967742,4.66,a-picp-i1,2021-22,Somerville-Full Circle High School,02740510,"","","","","","","","","", 100.0, 90.9, 88.2, 84.6, 90.2, 51 +5.161290322580645,5,a-picp-i1,2021-22,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, 427 +3.932903225806452,3.93,a-picp-i1,2021-22,Somerville-Next Wave Junior High,02740410,"","","","","","", 0.0, 80.0, 80.0,"","","","", 76.2, 21 +3.163870967741935,3.16,a-picp-i1,2021-22,Somerville-Somerville High,02740505,"","","","","","","","","", 70.8, 67.8, 44.4, 57.0, 61.3," 1,341" +5.161290322580645,5,a-picp-i1,2021-22,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, 343 +5.089032258064516,5,a-picp-i1,2021-22,Somerville-Winter Hill Community,02740120, 95.8, 97.9, 100.0, 100.0, 100.0, 94.5, 100.0, 98.5, 100.0,"","","","", 98.6, 422 +5.161290322580645,5,a-picp-i1,2021-22,South Hadley-Michael E. Smith Middle School,02780305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 542 +5.161290322580645,5,a-picp-i1,2021-22,South Hadley-Mosier,02780020,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 383 +2.0387096774193547,2.04,a-picp-i1,2021-22,South Hadley-Plains Elementary,02780015, 0.0, 95.7,"","","","","","","","","","","", 39.5, 228 +2.08,2.08,a-picp-i1,2021-22,South Hadley-South Hadley High,02780505,"","","","","","","","","", 74.1, 44.4, 19.7, 21.4, 40.3, 548 +1.3780645161290321,1.38,a-picp-i1,2021-22,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605,"","","","","","","","","", 11.2, 40.7, 38.1, 17.7, 26.7, 828 +4.129032258064516,4.13,a-picp-i1,2021-22,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, 35.9, 34.2, 22.9, 48.5, 80.0," 1,037" +0.4129032258064516,1,a-picp-i1,2021-22,South Shore Regional Vocational Technical-So Shore Vocational Technical High,08730605,"","","","","","","","","", 7.8, 10.8, 8.1, 5.2, 8.0, 646 +5.161290322580645,5,a-picp-i1,2021-22,Southampton-William E Norris,02750005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 427 +5.161290322580645,5,a-picp-i1,2021-22,Southborough-Albert S. Woodward Memorial School,02760050,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 269 +5.161290322580645,5,a-picp-i1,2021-22,Southborough-Margaret A Neary,02760020,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 260 +5.161290322580645,5,a-picp-i1,2021-22,Southborough-Mary E Finn School,02760008, 100.0, 100.0,"","","","","","","","","","","", 100.0, 233 +4.139354838709678,4.14,a-picp-i1,2021-22,Southborough-P Brent Trottier,02760305,"","","","","","", 98.5, 98.4, 42.4,"","","","", 80.2, 383 +5.109677419354838,5,a-picp-i1,2021-22,Southbridge-Charlton Street,02770005, 100.0,"", 100.0, 96.6, 100.0, 98.8,"","","","","","","", 99.0, 292 +5.094193548387097,5,a-picp-i1,2021-22,Southbridge-Eastford Road,02770010, 98.7, 98.7,"","","","","","","","","","","", 98.7, 309 +1.7754838709677419,1.78,a-picp-i1,2021-22,Southbridge-Southbridge Academy,02770525,"","","","","","", 0.0, 0.0, 0.0, 0.0, 80.0, 100.0, 71.4, 34.4, 32 +4.815483870967742,4.82,a-picp-i1,2021-22,Southbridge-Southbridge High School,02770515,"","","","","","","","","", 96.8, 90.5, 90.6, 93.3, 93.3, 446 +4.72258064516129,4.72,a-picp-i1,2021-22,Southbridge-Southbridge Middle School,02770315,"","","","","","", 92.7, 87.6, 93.8,"","","","", 91.5, 436 +5.161290322580645,5,a-picp-i1,2021-22,Southbridge-West Street,02770020,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 344 +0.7948387096774193,1,a-picp-i1,2021-22,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605,"","","","","","","","","", 12.5, 13.7, 14.5, 22.0, 15.4," 1,535" +3.9277419354838705,3.93,a-picp-i1,2021-22,Southern Berkshire-Mt Everett Regional,07650505,"","","","","","", 100.0, 100.0, 100.0, 73.5, 60.0, 61.5, 41.7, 76.1, 305 +5.161290322580645,5,a-picp-i1,2021-22,Southern Berkshire-New Marlborough Central,07650018, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 55 +5.161290322580645,5,a-picp-i1,2021-22,Southern Berkshire-South Egremont,07650030, 100.0,"","","","","","","","","","","","", 100.0, 13 +5.161290322580645,5,a-picp-i1,2021-22,Southern Berkshire-Undermountain,07650035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +0.3303225806451613,1,a-picp-i1,2021-22,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605,"","","","","","","","","", 6.2, 6.7, 6.2, 6.4, 6.4," 1,174" +5.161290322580645,5,a-picp-i1,2021-22,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 398 +3.5612903225806454,3.56,a-picp-i1,2021-22,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505,"","","","","","","", 99.2, 98.3, 49.0, 68.7, 37.9, 48.2, 69.0, 651 +5.161290322580645,5,a-picp-i1,2021-22,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 277 +3.6025806451612903,3.6,a-picp-i1,2021-22,Spencer-E Brookfield-David Prouty High,07670505,"","","","","","","","","", 94.2, 64.4, 52.7, 56.7, 69.8, 328 +5.161290322580645,5,a-picp-i1,2021-22,Spencer-E Brookfield-East Brookfield Elementary,07670008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 142 +4.784516129032259,4.78,a-picp-i1,2021-22,Spencer-E Brookfield-Knox Trail Middle School,07670415,"","","","","", 95.3, 90.4, 95.9, 89.9,"","","","", 92.7, 426 +5.150967741935483,5,a-picp-i1,2021-22,Spencer-E Brookfield-Wire Village School,07670040, 100.0, 100.0, 100.0, 98.8, 100.0,"","","","","","","","", 99.8, 419 +5.104516129032258,5,a-picp-i1,2021-22,Springfield International Charter (District)-Springfield International Charter School,04410505, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.3, 98.7, 98.4, 93.8, 97.1, 97.7, 100.0, 98.9," 1,585" +3.241290322580645,3.24,a-picp-i1,2021-22,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 53.7, 96.4, 50.9, 51.9, 50.9, 51.9, 50.9, 94.4,"","","","","", 62.8, 433 +4.144516129032258,4.14,a-picp-i1,2021-22,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 45.7, 42.9,"","","","", 80.3, 314 +4.299354838709677,4.3,a-picp-i1,2021-22,Springfield-Alice B Beal Elementary,02810175, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.3, 252 +4.5522580645161295,4.55,a-picp-i1,2021-22,Springfield-Arthur T Talmadge,02810165, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.2, 204 +4.32,4.32,a-picp-i1,2021-22,Springfield-Brightwood,02810025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.7, 361 +3.1793548387096773,3.18,a-picp-i1,2021-22,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367,"","","","","","", 59.5, 65.4, 60.2,"","","","", 61.6, 250 +5.027096774193549,5,a-picp-i1,2021-22,Springfield-Conservatory of the Arts,02810475,"","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 94.9, 82.9, 97.4, 304 +4.118709677419354,4.12,a-picp-i1,2021-22,Springfield-Daniel B Brunton,02810035, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 79.8, 362 +0.0,1,a-picp-i1,2021-22,Springfield-Early Childhood Education Center,02810001, 0.0,"","","","","","","","","","","","", 0.0, 13 +4.361290322580645,4.36,a-picp-i1,2021-22,Springfield-Edward P. Boland School,02810010, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.5, 414 +4.381935483870968,4.38,a-picp-i1,2021-22,Springfield-Elias Brookings,02810030, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.9, 252 +0.0,1,a-picp-i1,2021-22,Springfield-Emergence Academy,02810318,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 83 +2.1780645161290324,2.18,a-picp-i1,2021-22,Springfield-Forest Park Middle,02810325,"","","","","","", 93.7, 54.1, 0.0,"","","","", 42.2, 464 +4.258064516129032,4.26,a-picp-i1,2021-22,Springfield-Frank H Freedman,02810075, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.5, 246 +4.412903225806452,4.41,a-picp-i1,2021-22,Springfield-Frederick Harris,02810080, 1.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.5, 496 +0.6451612903225806,1,a-picp-i1,2021-22,Springfield-Gateway to College at Holyoke Community College,02810575,"","","","","","","","","","","","", 12.5, 12.5, 8 +0.22193548387096773,1,a-picp-i1,2021-22,Springfield-Gateway to College at Springfield Technical Community College,02810580,"","","","","","","","","","","", 0.0, 7.1, 4.3, 23 +4.459354838709678,4.46,a-picp-i1,2021-22,Springfield-German Gerena Community School,02810195, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.4, 463 +4.2941935483870965,4.29,a-picp-i1,2021-22,Springfield-Glenwood,02810065, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.2, 273 +4.516129032258065,4.52,a-picp-i1,2021-22,Springfield-Glickman Elementary,02810068, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.5, 271 +3.2722580645161288,3.27,a-picp-i1,2021-22,Springfield-High School Of Commerce,02810510,"","","","","","","","","", 66.3, 51.0, 69.8, 66.1, 63.4," 1,234" +4.201290322580645,4.2,a-picp-i1,2021-22,Springfield-Hiram L Dorman,02810050, 2.2, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.4, 237 +4.211612903225806,4.21,a-picp-i1,2021-22,Springfield-Homer Street,02810085, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.6, 364 +0.0,1,a-picp-i1,2021-22,Springfield-Impact Prep at Chestnut,02810366,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 215 +4.129032258064516,4.13,a-picp-i1,2021-22,Springfield-Indian Orchard Elementary,02810100, 0.0, 95.9, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 80.0, 446 +3.59741935483871,3.6,a-picp-i1,2021-22,Springfield-John F Kennedy Middle,02810328,"","","","","","", 74.1, 75.7, 61.1,"","","","", 69.7, 433 +2.926451612903226,2.93,a-picp-i1,2021-22,Springfield-John J Duggan Middle,02810320,"","","","","","", 54.4, 66.9, 54.8, 0.0, 79.3, 63.0, 92.7, 56.7, 737 +4.216774193548387,4.22,a-picp-i1,2021-22,Springfield-Kensington International School,02810110, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.7, 202 +4.418064516129032,4.42,a-picp-i1,2021-22,Springfield-Kiley Academy,02810316,"","","","","","", 96.6, 71.7,"","","","","", 85.6, 209 +3.814193548387097,3.81,a-picp-i1,2021-22,Springfield-Kiley Prep,02810315,"","","","","","", 75.0, 72.9,"","","","","", 73.9, 176 +4.330322580645162,4.33,a-picp-i1,2021-22,Springfield-Liberty,02810115, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.9, 254 +0.6451612903225806,1,a-picp-i1,2021-22,Springfield-Liberty Preparatory Academy,02810560,"","","","","","","","","", 0.0, 20.0, 0.0,"", 12.5, 8 +4.371612903225807,4.37,a-picp-i1,2021-22,Springfield-Lincoln,02810120, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.7, 424 +4.025806451612903,4.03,a-picp-i1,2021-22,Springfield-Lyceum Academy,02810317,"","","","","","", 97.5, 72.5, 64.2,"","","","", 78.0, 364 +3.979354838709677,3.98,a-picp-i1,2021-22,Springfield-M Marcus Kiley Middle,02810330,"","","","","","","","", 77.1,"","","","", 77.1, 223 +4.407741935483871,4.41,a-picp-i1,2021-22,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.4, 246 +4.32,4.32,a-picp-i1,2021-22,Springfield-Mary M Lynch,02810140, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.7, 202 +4.356129032258065,4.36,a-picp-i1,2021-22,Springfield-Mary M Walsh,02810155, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.4, 243 +4.459354838709678,4.46,a-picp-i1,2021-22,Springfield-Mary O Pottenger,02810145, 2.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.4, 367 +4.32,4.32,a-picp-i1,2021-22,Springfield-Milton Bradley School,02810023, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.7, 424 +4.345806451612903,4.35,a-picp-i1,2021-22,Springfield-Rebecca M Johnson,02810055, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.2, 519 +0.0,1,a-picp-i1,2021-22,Springfield-Rise Academy at Van Sickle,02810480,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 266 +2.632258064516129,2.63,a-picp-i1,2021-22,Springfield-Roger L. Putnam Vocational Technical Academy,02810620,"","","","","","","","","", 26.0, 42.4, 52.5, 87.3, 51.0," 1,351" +4.345806451612903,4.35,a-picp-i1,2021-22,Springfield-STEM Middle Academy,02810350,"","","","","","", 92.5, 90.7, 68.6,"","","","", 84.2, 265 +4.56258064516129,4.56,a-picp-i1,2021-22,Springfield-Samuel Bowles,02810020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.4, 198 +1.1199999999999999,1.12,a-picp-i1,2021-22,Springfield-South End Middle School,02810355,"","","","","","", 0.0, 69.4, 1.3,"","","","", 21.7, 203 +2.926451612903226,2.93,a-picp-i1,2021-22,Springfield-Springfield Central High,02810500,"","","","","","","","","", 48.5, 61.0, 64.3, 58.5, 56.7," 2,036" +1.1561290322580644,1.16,a-picp-i1,2021-22,Springfield-Springfield High School,02810570,"","","","","","","","","", 6.7, 57.7, 10.5, 16.2, 22.4, 134 +3.535483870967742,3.54,a-picp-i1,2021-22,Springfield-Springfield High School of Science and Technology,02810530,"","","","","","","","","", 68.3, 48.8, 83.1, 74.3, 68.5," 1,068" +1.5483870967741935,1.55,a-picp-i1,2021-22,Springfield-Springfield International Academy at Johnson,02810215,"","","", 0.0, 10.0, 61.5,"","","","","","","", 30.0, 30 +2.606451612903226,2.61,a-picp-i1,2021-22,Springfield-Springfield International Academy at Sci-Tech,02810700,"","","","","","","","","", 66.7, 0.0, 0.0, 69.2, 50.5, 101 +5.161290322580645,5,a-picp-i1,2021-22,Springfield-Springfield Middle School,02810360,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 18 +5.161290322580645,5,a-picp-i1,2021-22,Springfield-Springfield Public Day Elementary School,02810005,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 29 +1.7961290322580643,1.8,a-picp-i1,2021-22,Springfield-Springfield Public Day High School,02810550,"","","","","","","","","", 0.0, 0.0, 80.0, 88.9, 34.8, 46 +5.161290322580645,5,a-picp-i1,2021-22,Springfield-Springfield Public Day Middle School,02810345,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 40 +0.0,1,a-picp-i1,2021-22,Springfield-Springfield Realization Academy,02810335,"","","","","","", 0.0,"","","","","","", 0.0, 70 +4.314838709677419,4.31,a-picp-i1,2021-22,Springfield-Sumner Avenue,02810160, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.6, 383 +3.747096774193548,3.75,a-picp-i1,2021-22,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205,"","","","","","", 76.7, 84.4, 84.9, 0.0, 89.2, 95.9, 94.5, 72.6, 592 +3.793548387096774,3.79,a-picp-i1,2021-22,Springfield-The Springfield Virtual School,02810705, 92.3, 100.0, 100.0, 100.0, 100.0, 100.0, 72.0, 100.0, 100.0, 3.2, 9.8, 12.8, 5.6, 73.5, 502 +4.08258064516129,4.08,a-picp-i1,2021-22,Springfield-Thomas M Balliet,02810015, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 79.1, 235 +2.4051612903225807,2.41,a-picp-i1,2021-22,Springfield-Van Sickle Academy,02810485,"","","","","","", 49.4, 53.4, 38.5,"","","","", 46.6, 281 +4.469677419354839,4.47,a-picp-i1,2021-22,Springfield-Warner,02810180, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.6, 201 +4.309677419354839,4.31,a-picp-i1,2021-22,Springfield-Washington,02810185, 5.3, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 327 +4.2941935483870965,4.29,a-picp-i1,2021-22,Springfield-White Street,02810190, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.2, 375 +4.32,4.32,a-picp-i1,2021-22,Springfield-William N. DeBerry,02810045, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.7, 203 +5.161290322580645,5,a-picp-i1,2021-22,Stoneham-Colonial Park,02840005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2021-22,Stoneham-Robin Hood,02840025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 349 +5.161290322580645,5,a-picp-i1,2021-22,Stoneham-South,02840030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 302 +4.985806451612903,4.99,a-picp-i1,2021-22,Stoneham-Stoneham Central Middle School,02840405,"","","","","", 97.2, 98.9, 94.3, 96.0,"","","","", 96.6, 714 +3.452903225806452,3.45,a-picp-i1,2021-22,Stoneham-Stoneham High,02840505,"","","","","","","","","", 92.4, 70.0, 47.7, 57.5, 66.9, 577 +5.161290322580645,5,a-picp-i1,2021-22,Stoughton-Helen Hansen Elementary,02850010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 275 +5.161290322580645,5,a-picp-i1,2021-22,Stoughton-Joseph H Gibbons,02850025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 339 +5.161290322580645,5,a-picp-i1,2021-22,Stoughton-Joseph R Dawe Jr Elementary,02850014, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 368 +4.985806451612903,4.99,a-picp-i1,2021-22,Stoughton-O'Donnell Middle School,02850405,"","","","","","", 96.9, 96.0, 96.9,"","","","", 96.6, 857 +5.161290322580645,5,a-picp-i1,2021-22,Stoughton-Richard L. Wilkins Elementary School,02850020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 275 +5.161290322580645,5,a-picp-i1,2021-22,Stoughton-South Elementary,02850015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +3.958709677419355,3.96,a-picp-i1,2021-22,Stoughton-Stoughton High,02850505,"","","","","","","","","", 78.8, 74.5, 73.8, 79.5, 76.7," 1,074" +4.330322580645162,4.33,a-picp-i1,2021-22,Sturbridge-Burgess Elementary,02870005, 0.0, 99.1, 97.5, 95.9, 97.4, 98.5, 99.1,"","","","","","", 83.9, 801 +3.535483870967742,3.54,a-picp-i1,2021-22,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505,"","","","","","","","","", 100.0, 99.0, 32.9, 41.5, 68.5, 844 +4.861935483870968,4.86,a-picp-i1,2021-22,Sudbury-Ephraim Curtis Middle,02880305,"","","","","","", 94.6, 91.0, 97.0,"","","","", 94.2, 880 +5.161290322580645,5,a-picp-i1,2021-22,Sudbury-General John Nixon Elementary,02880025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 302 +5.161290322580645,5,a-picp-i1,2021-22,Sudbury-Israel Loring School,02880015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 422 +5.161290322580645,5,a-picp-i1,2021-22,Sudbury-Josiah Haynes,02880010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 363 +5.161290322580645,5,a-picp-i1,2021-22,Sudbury-Peter Noyes,02880030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 508 +5.161290322580645,5,a-picp-i1,2021-22,Sunderland-Sunderland Elementary,02890005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 168 +5.161290322580645,5,a-picp-i1,2021-22,Sutton-Sutton Early Learning,02900003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 268 +5.145806451612903,5,a-picp-i1,2021-22,Sutton-Sutton Elementary,02900005,"","","", 100.0, 99.0, 100.0,"","","","","","","", 99.7, 288 +2.750967741935484,2.75,a-picp-i1,2021-22,Sutton-Sutton High School,02900510,"","","","","","","","","", 77.5, 53.6, 22.6, 60.7, 53.3, 368 +3.6490322580645165,3.65,a-picp-i1,2021-22,Sutton-Sutton Middle School,02900305,"","","","","","", 98.1, 77.3, 38.0,"","","","", 70.7, 321 +5.135483870967742,5,a-picp-i1,2021-22,Swampscott-Clarke,02910005, 100.0, 100.0, 100.0, 100.0, 97.1,"","","","","","","","", 99.5, 203 +5.161290322580645,5,a-picp-i1,2021-22,Swampscott-Hadley,02910010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 290 +5.161290322580645,5,a-picp-i1,2021-22,Swampscott-Stanley,02910020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 205 +3.4064516129032256,3.41,a-picp-i1,2021-22,Swampscott-Swampscott High,02910505,"","","","","","","","","", 54.2, 69.8, 57.8, 78.8, 66.0, 661 +5.104516129032258,5,a-picp-i1,2021-22,Swampscott-Swampscott Middle,02910305,"","","","","", 99.3, 99.4, 97.6, 99.4,"","","","", 98.9, 635 +5.161290322580645,5,a-picp-i1,2021-22,Swansea-Elizabeth S Brown,02920006,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 282 +5.161290322580645,5,a-picp-i1,2021-22,Swansea-Gardner,02920015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 268 +3.509677419354839,3.51,a-picp-i1,2021-22,Swansea-Joseph Case High,02920505,"","","","","","","","","", 75.0, 56.6, 67.0, 76.2, 68.0, 540 +3.370322580645161,3.37,a-picp-i1,2021-22,Swansea-Joseph Case Jr High,02920305,"","","","","","", 100.0, 100.0, 0.6,"","","","", 65.3, 502 +5.161290322580645,5,a-picp-i1,2021-22,Swansea-Joseph G Luther,02920020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 197 +5.161290322580645,5,a-picp-i1,2021-22,Swansea-Mark G Hoyle Elementary,02920017, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 181 +2.8129032258064517,2.81,a-picp-i1,2021-22,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 87.0, 89.2, 86.7, 88.7, 89.0, 91.9, 98.1, 88.1, 93.1, 10.4, 20.3, 23.4, 34.4, 54.5," 2,961" +5.099354838709678,5,a-picp-i1,2021-22,Tantasqua-Tantasqua Regional Jr High,07700405,"","","","","","","", 98.3, 99.3,"","","","", 98.8, 595 +3.411612903225806,3.41,a-picp-i1,2021-22,Tantasqua-Tantasqua Regional Sr High,07700505,"","","","","","","","","", 51.9, 63.9, 74.6, 72.9, 66.1, 669 +1.9509677419354838,1.95,a-picp-i1,2021-22,Tantasqua-Tantasqua Regional Vocational,07700605,"","","","","","","","","", 47.2, 38.5, 28.3, 34.5, 37.8, 508 +5.1251612903225805,5,a-picp-i1,2021-22,Taunton-Benjamin Friedman Middle,02930315,"","","","","", 99.2, 99.6, 99.3,"","","","","", 99.3, 752 +5.161290322580645,5,a-picp-i1,2021-22,Taunton-East Taunton Elementary,02930010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 512 +5.161290322580645,5,a-picp-i1,2021-22,Taunton-Edmund Hatch Bennett,02930007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 301 +5.161290322580645,5,a-picp-i1,2021-22,Taunton-Elizabeth Pole,02930027, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 577 +5.161290322580645,5,a-picp-i1,2021-22,Taunton-H H Galligan,02930057, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 257 +5.161290322580645,5,a-picp-i1,2021-22,Taunton-James L. Mulcahey Elementary School,02930015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 765 +5.052903225806452,5,a-picp-i1,2021-22,Taunton-John F Parker Middle,02930305,"","","","","", 97.5, 97.0, 99.4,"","","","","", 97.9, 486 +5.161290322580645,5,a-picp-i1,2021-22,Taunton-Joseph C Chamberlain,02930008, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 451 +5.114838709677419,5,a-picp-i1,2021-22,Taunton-Joseph H Martin,02930042,"","","","","", 99.5, 99.0, 98.8,"","","","","", 99.1, 675 +0.0,1,a-picp-i1,2021-22,Taunton-Taunton Alternative High School,02930525,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 76 +2.1729032258064516,2.17,a-picp-i1,2021-22,Taunton-Taunton High,02930505,"","","","","","","","", 44.0, 43.8, 37.8, 41.0, 43.7, 42.1," 2,764" +3.581935483870968,3.58,a-picp-i1,2021-22,Tewksbury-Heath-Brook,02950010, 0.0, 100.0, 100.0,"","","","","","","","","","", 69.4, 310 +5.12,5,a-picp-i1,2021-22,Tewksbury-John F. Ryan,02950023,"","","","","", 98.5, 100.0,"","","","","","", 99.2, 517 +5.094193548387097,5,a-picp-i1,2021-22,Tewksbury-John W. Wynn Middle,02950305,"","","","","","","", 98.8, 98.5,"","","","", 98.7, 521 +3.556129032258065,3.56,a-picp-i1,2021-22,Tewksbury-L F Dewing,02950001, 0.0, 100.0, 100.0,"","","","","","","","","","", 68.9, 438 +5.161290322580645,5,a-picp-i1,2021-22,Tewksbury-Louise Davy Trahan,02950025,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 215 +5.161290322580645,5,a-picp-i1,2021-22,Tewksbury-North Street,02950020,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 256 +3.881290322580645,3.88,a-picp-i1,2021-22,Tewksbury-Tewksbury Memorial High,02950505,"","","","","","","","","", 88.8, 77.2, 51.8, 82.4, 75.2, 798 +5.052903225806452,5,a-picp-i1,2021-22,Tisbury-Tisbury Elementary,02960005, 97.1, 100.0, 96.6, 96.6, 100.0, 96.9, 96.6, 95.8, 100.0,"","","","", 97.9, 289 +5.161290322580645,5,a-picp-i1,2021-22,Topsfield-Proctor Elementary,02980005,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 260 +5.161290322580645,5,a-picp-i1,2021-22,Topsfield-Steward Elementary,02980010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 322 +1.481290322580645,1.48,a-picp-i1,2021-22,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605,"","","","","","","","","", 5.9, 4.0, 51.6, 56.7, 28.7, 938 +5.161290322580645,5,a-picp-i1,2021-22,Triton-Newbury Elementary,07730020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 343 +5.161290322580645,5,a-picp-i1,2021-22,Triton-Pine Grove,07730025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2021-22,Triton-Salisbury Elementary,07730015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 394 +2.131612903225806,2.13,a-picp-i1,2021-22,Triton-Triton Regional High School,07730505,"","","","","","","","","", 41.7, 43.0, 46.7, 31.6, 41.3, 640 +5.099354838709678,5,a-picp-i1,2021-22,Triton-Triton Regional Middle School,07730405,"","","","","","","", 100.0, 97.8,"","","","", 98.8, 341 +5.104516129032258,5,a-picp-i1,2021-22,Truro-Truro Central,03000005, 94.1, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 98.9, 87 +4.299354838709677,4.3,a-picp-i1,2021-22,Tyngsborough-Tyngsborough Elementary,03010020, 0.0, 99.1, 100.0, 100.0, 99.2, 99.3,"","","","","","","", 83.3, 736 +3.3548387096774195,3.35,a-picp-i1,2021-22,Tyngsborough-Tyngsborough High School,03010505,"","","","","","","","","", 49.0, 48.9, 67.3, 86.7, 65.0, 426 +4.96516129032258,4.97,a-picp-i1,2021-22,Tyngsborough-Tyngsborough Middle,03010305,"","","","","","", 100.0, 92.9, 96.1,"","","","", 96.2, 395 +5.161290322580645,5,a-picp-i1,2021-22,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 296 +5.161290322580645,5,a-picp-i1,2021-22,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, 556 +5.161290322580645,5,a-picp-i1,2021-22,Up-Island Regional-Chilmark Elementary,07740010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 55 +5.114838709677419,5,a-picp-i1,2021-22,Up-Island Regional-West Tisbury Elementary,07740020, 95.0, 100.0, 100.0, 97.7, 100.0, 100.0, 100.0, 97.9, 100.0,"","","","", 99.1, 339 +0.0,1,a-picp-i1,2021-22,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 716 +0.9238709677419354,1,a-picp-i1,2021-22,Uxbridge-Gateway to College,03040515,"","","","","","","","","","", 0.0, 30.0, 16.0, 17.9, 39 +5.161290322580645,5,a-picp-i1,2021-22,Uxbridge-Taft Early Learning Center,03040005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 470 +2.56,2.56,a-picp-i1,2021-22,Uxbridge-Uxbridge High,03040505,"","","","","","","","", 20.8, 60.0, 44.5, 60.6, 67.7, 49.6, 554 +5.109677419354838,5,a-picp-i1,2021-22,Uxbridge-Whitin Intermediate,03040405,"","","","", 100.0, 100.0, 99.2, 97.3,"","","","","", 99.0, 521 +5.161290322580645,5,a-picp-i1,2021-22,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 359 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Central Tree Middle,07750310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 369 +5.037419354838709,5,a-picp-i1,2021-22,Wachusett-Chocksett Middle School,07750315,"","","","","", 96.5, 97.5, 98.6, 97.7,"","","","", 97.6, 295 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Davis Hill Elementary,07750018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 452 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Dawson,07750020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 495 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Glenwood Elementary School,07750060,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 335 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Houghton Elementary,07750027, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 327 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Leroy E.Mayo,07750032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 505 +5.156129032258065,5,a-picp-i1,2021-22,Wachusett-Mountview Middle,07750305,"","","","","","", 100.0, 100.0, 99.6,"","","","", 99.9, 750 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Naquag Elementary School,07750005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 351 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Paxton Center,07750040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 445 +5.161290322580645,5,a-picp-i1,2021-22,Wachusett-Thomas Prince,07750045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 358 +2.7974193548387096,2.8,a-picp-i1,2021-22,Wachusett-Wachusett Regional High,07750505,"","","","","","","","","", 79.3, 59.4, 36.2, 42.1, 54.2," 1,956" +5.161290322580645,5,a-picp-i1,2021-22,Wakefield-Dolbeare,03050005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 447 +5.073548387096774,5,a-picp-i1,2021-22,Wakefield-Galvin Middle School,03050310,"","","","","", 96.4, 98.5, 98.9, 99.6,"","","","", 98.3," 1,072" +5.161290322580645,5,a-picp-i1,2021-22,Wakefield-Greenwood,03050020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 222 +2.9780645161290322,2.98,a-picp-i1,2021-22,Wakefield-Wakefield Memorial High,03050505,"","","","","","","","","", 61.9, 70.8, 40.4, 57.9, 57.7, 843 +5.161290322580645,5,a-picp-i1,2021-22,Wakefield-Walton,03050040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2021-22,Wakefield-Woodville School,03050015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 424 +4.536774193548387,4.54,a-picp-i1,2021-22,Wales-Wales Elementary,03060005, 0.0, 100.0, 94.1, 100.0, 100.0, 100.0, 100.0,"","","","","","", 87.9, 99 +4.980645161290322,4.98,a-picp-i1,2021-22,Walpole-Bird Middle,03070305,"","","","","","", 100.0, 92.2, 97.2,"","","","", 96.5, 376 +5.161290322580645,5,a-picp-i1,2021-22,Walpole-Boyden,03070010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 375 +5.1251612903225805,5,a-picp-i1,2021-22,Walpole-Eleanor N Johnson Middle,03070310,"","","","","","", 100.0, 99.3, 98.5,"","","","", 99.3, 429 +5.161290322580645,5,a-picp-i1,2021-22,Walpole-Elm Street School,03070005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2021-22,Walpole-Fisher,03070015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 441 +5.161290322580645,5,a-picp-i1,2021-22,Walpole-Old Post Road,03070018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 472 +3.4425806451612906,3.44,a-picp-i1,2021-22,Walpole-Walpole High,03070505,"","","","","","","","","", 60.2, 69.0, 67.6, 69.5, 66.7," 1,019" +5.161290322580645,5,a-picp-i1,2021-22,Waltham-Douglas MacArthur Elementary School,03080032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 475 +5.161290322580645,5,a-picp-i1,2021-22,Waltham-Henry Whittemore Elementary School,03080065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 419 +5.161290322580645,5,a-picp-i1,2021-22,Waltham-James Fitzgerald Elementary School,03080060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 377 +5.006451612903226,5,a-picp-i1,2021-22,Waltham-John F Kennedy Middle,03080404,"","","","","","", 98.0, 95.7, 97.3,"","","","", 97.0, 566 +5.073548387096774,5,a-picp-i1,2021-22,Waltham-John W. McDevitt Middle School,03080415,"","","","","","", 97.6, 99.1, 98.2,"","","","", 98.3, 646 +5.150967741935483,5,a-picp-i1,2021-22,Waltham-Northeast Elementary School,03080040, 98.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 439 +5.161290322580645,5,a-picp-i1,2021-22,Waltham-Thomas R Plympton Elementary School,03080050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 341 +5.135483870967742,5,a-picp-i1,2021-22,Waltham-Waltham Public Schools Dual Language Program,03080001, 100.0, 97.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 205 +2.895483870967742,2.9,a-picp-i1,2021-22,Waltham-Waltham Sr High,03080505,"","","","","","","","","", 63.9, 66.3, 43.0, 47.6, 56.1," 1,707" +5.145806451612903,5,a-picp-i1,2021-22,Waltham-William F. Stanley Elementary School,03080005, 98.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 329 +5.161290322580645,5,a-picp-i1,2021-22,Ware-Stanley M Koziol Elementary School,03090020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 324 +3.3548387096774195,3.35,a-picp-i1,2021-22,Ware-Ware Junior/Senior High School,03090505,"","","","","","","", 93.1, 94.3, 32.0, 38.0, 52.5, 70.2, 65.0, 503 +5.161290322580645,5,a-picp-i1,2021-22,Ware-Ware Middle School,03090305,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 256 +5.161290322580645,5,a-picp-i1,2021-22,Wareham-John William Decas,03100003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 544 +5.161290322580645,5,a-picp-i1,2021-22,Wareham-Minot Forest,03100017,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 318 +0.0,1,a-picp-i1,2021-22,Wareham-Wareham Cooperative Alternative School,03100315,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 44 +4.985806451612903,4.99,a-picp-i1,2021-22,Wareham-Wareham Middle,03100305,"","","","","", 95.3, 97.0, 97.2,"","","","","", 96.6, 473 +3.6799999999999997,3.68,a-picp-i1,2021-22,Wareham-Wareham Senior High,03100505,"","","","","","","","", 80.8, 71.6, 72.2, 60.4, 60.9, 71.3, 600 +5.161290322580645,5,a-picp-i1,2021-22,Watertown-Cunniff,03140015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 305 +5.161290322580645,5,a-picp-i1,2021-22,Watertown-Hosmer,03140020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 568 +5.145806451612903,5,a-picp-i1,2021-22,Watertown-James Russell Lowell,03140025, 98.3, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 349 +2.7303225806451614,2.73,a-picp-i1,2021-22,Watertown-Watertown High,03140505,"","","","","","","","","", 65.0, 48.6, 39.4, 54.6, 52.9, 715 +5.135483870967742,5,a-picp-i1,2021-22,Watertown-Watertown Middle,03140305,"","","","","","", 99.5, 99.4, 99.5,"","","","", 99.5, 560 +5.161290322580645,5,a-picp-i1,2021-22,Wayland-Claypit Hill School,03150005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 522 +5.161290322580645,5,a-picp-i1,2021-22,Wayland-Happy Hollow School,03150015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 389 +5.161290322580645,5,a-picp-i1,2021-22,Wayland-Loker School,03150020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 377 +2.3793548387096775,2.38,a-picp-i1,2021-22,Wayland-Wayland High School,03150505,"","","","","","","","","", 63.3, 42.7, 37.9, 37.4, 46.1, 827 +5.150967741935483,5,a-picp-i1,2021-22,Wayland-Wayland Middle School,03150305,"","","","","","", 100.0, 99.5, 100.0,"","","","", 99.8, 601 +3.6025806451612903,3.6,a-picp-i1,2021-22,Webster-Bartlett High School,03160505,"","","","","","","","","", 58.5, 80.8, 61.1, 83.5, 69.8, 388 +5.161290322580645,5,a-picp-i1,2021-22,Webster-Park Avenue Elementary,03160015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 675 +4.9961290322580645,5.0,a-picp-i1,2021-22,Webster-Webster Middle School,03160315,"","","","","", 96.2, 95.0, 98.1, 97.9,"","","","", 96.8, 616 +5.161290322580645,5,a-picp-i1,2021-22,Wellesley-Ernest F Upham,03170050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 167 +5.161290322580645,5,a-picp-i1,2021-22,Wellesley-Hunnewell,03170025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2021-22,Wellesley-John D Hardy,03170020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 218 +5.140645161290323,5,a-picp-i1,2021-22,Wellesley-Joseph E Fiske,03170015, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2,"","","","","","","", 99.6, 271 +5.161290322580645,5,a-picp-i1,2021-22,Wellesley-Katharine Lee Bates,03170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 283 +5.161290322580645,5,a-picp-i1,2021-22,Wellesley-Schofield,03170045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2021-22,Wellesley-Sprague Elementary School,03170048, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 306 +4.929032258064516,4.93,a-picp-i1,2021-22,Wellesley-Wellesley Middle,03170305,"","","","","","", 98.7, 97.0, 91.4,"","","","", 95.5," 1,015" +3.313548387096774,3.31,a-picp-i1,2021-22,Wellesley-Wellesley Sr High,03170505,"","","","","","","","","", 72.8, 66.7, 59.4, 57.9, 64.2," 1,400" +5.027096774193549,5,a-picp-i1,2021-22,Wellfleet-Wellfleet Elementary,03180005, 95.2, 100.0, 100.0, 95.8, 94.4, 100.0,"","","","","","","", 97.4, 116 +5.161290322580645,5,a-picp-i1,2021-22,West Boylston-Major Edwards Elementary,03220005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 375 +4.39741935483871,4.4,a-picp-i1,2021-22,West Boylston-West Boylston Junior/Senior High,03220505,"","","","","","", 100.0, 100.0, 97.4, 71.2, 63.3, 68.2, 87.8, 85.2, 473 +5.161290322580645,5,a-picp-i1,2021-22,West Bridgewater-Howard School,03230305,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 302 +5.161290322580645,5,a-picp-i1,2021-22,West Bridgewater-Rose L Macdonald,03230003,"", 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 327 +5.161290322580645,5,a-picp-i1,2021-22,West Bridgewater-Spring Street School,03230005, 100.0,"","","","","","","","","","","","", 100.0, 96 +4.696774193548387,4.7,a-picp-i1,2021-22,West Bridgewater-West Bridgewater Junior/Senior,03230505,"","","","","","","", 100.0, 96.7, 94.9, 100.0, 84.5, 68.9, 91.0, 632 +5.135483870967742,5,a-picp-i1,2021-22,West Springfield-John Ashley,03320005, 99.5,"","","","","","","","","","","","", 99.5, 198 +5.12,5,a-picp-i1,2021-22,West Springfield-John R Fausey,03320010,"", 98.8, 98.7, 98.6, 100.0, 100.0,"","","","","","","", 99.2, 397 +5.109677419354838,5,a-picp-i1,2021-22,West Springfield-Memorial,03320025,"", 98.2, 100.0, 100.0, 100.0, 97.3,"","","","","","","", 99.0, 197 +5.099354838709678,5,a-picp-i1,2021-22,West Springfield-Mittineague,03320030,"", 100.0, 100.0, 97.6, 97.2, 100.0,"","","","","","","", 98.8, 161 +5.089032258064516,5,a-picp-i1,2021-22,West Springfield-Philip G Coburn,03320007, 97.8, 98.8, 100.0, 98.6, 96.6, 99.0,"","","","","","","", 98.6, 485 +5.099354838709678,5,a-picp-i1,2021-22,West Springfield-Tatham,03320040,"", 100.0, 100.0, 96.7, 100.0, 98.0,"","","","","","","", 98.8, 260 +3.6696774193548385,3.67,a-picp-i1,2021-22,West Springfield-West Springfield High,03320505,"","","","","","","","","", 79.6, 68.6, 76.1, 58.4, 71.1," 1,186" +4.686451612903226,4.69,a-picp-i1,2021-22,West Springfield-West Springfield Middle,03320305,"","","","","","", 92.3, 93.2, 87.1,"","","","", 90.8, 905 +5.161290322580645,5,a-picp-i1,2021-22,Westborough-Annie E Fales,03210010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 351 +5.161290322580645,5,a-picp-i1,2021-22,Westborough-Elsie A Hastings Elementary,03210025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 359 +5.161290322580645,5,a-picp-i1,2021-22,Westborough-J Harding Armstrong,03210005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 372 +5.130322580645162,5,a-picp-i1,2021-22,Westborough-Mill Pond School,03210045,"","","","", 99.3, 99.0, 100.0,"","","","","","", 99.4, 890 +5.058064516129032,5,a-picp-i1,2021-22,Westborough-Sarah W Gibbons Middle,03210305,"","","","","","","", 98.0, 98.0,"","","","", 98.0, 606 +2.833548387096774,2.83,a-picp-i1,2021-22,Westborough-Westborough High,03210505,"","","","","","","","","", 49.2, 53.0, 48.5, 69.1, 54.9," 1,180" +5.161290322580645,5,a-picp-i1,2021-22,Westfield-Abner Gibbs,03250020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 166 +5.161290322580645,5,a-picp-i1,2021-22,Westfield-Franklin Ave,03250015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 173 +5.161290322580645,5,a-picp-i1,2021-22,Westfield-Highland,03250025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 332 +5.161290322580645,5,a-picp-i1,2021-22,Westfield-Munger Hill,03250033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 342 +5.161290322580645,5,a-picp-i1,2021-22,Westfield-Paper Mill,03250036, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 308 +5.161290322580645,5,a-picp-i1,2021-22,Westfield-Southampton Road,03250040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 288 +2.9316129032258065,2.93,a-picp-i1,2021-22,Westfield-Westfield High,03250505,"","","","","","","","","", 49.6, 77.1, 52.3, 49.3, 56.8," 1,094" +5.089032258064516,5,a-picp-i1,2021-22,Westfield-Westfield Intermediate School,03250075,"","","","","", 99.1, 98.0,"","","","","","", 98.6, 691 +3.3393548387096774,3.34,a-picp-i1,2021-22,Westfield-Westfield Middle School,03250310,"","","","","","","", 62.6, 66.6,"","","","", 64.7, 689 +0.9083870967741936,1,a-picp-i1,2021-22,Westfield-Westfield Technical Academy,03250605,"","","","","","","","","", 12.5, 11.0, 21.8, 27.2, 17.6, 527 +5.104516129032258,5,a-picp-i1,2021-22,Westfield-Westfield Virtual School,03250705, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 94.7, 100.0,"","","","", 98.9, 89 +5.161290322580645,5,a-picp-i1,2021-22,Westford-Abbot Elementary,03260004,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 343 +5.104516129032258,5,a-picp-i1,2021-22,Westford-Blanchard Middle,03260310,"","","","","","", 100.0, 98.4, 98.3,"","","","", 98.9, 537 +5.161290322580645,5,a-picp-i1,2021-22,Westford-Col John Robinson,03260025, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 299 +5.161290322580645,5,a-picp-i1,2021-22,Westford-Day Elementary,03260007,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 315 +5.161290322580645,5,a-picp-i1,2021-22,Westford-John A. Crisafulli Elementary School,03260045,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 364 +5.161290322580645,5,a-picp-i1,2021-22,Westford-Nabnasset,03260015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 345 +5.161290322580645,5,a-picp-i1,2021-22,Westford-Rita E. Miller Elementary School,03260055, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 270 +5.145806451612903,5,a-picp-i1,2021-22,Westford-Stony Brook School,03260330,"","","","","","", 99.6, 100.0, 99.5,"","","","", 99.7, 635 +3.390967741935484,3.39,a-picp-i1,2021-22,Westford-Westford Academy,03260505,"","","","","","","","","", 72.1, 71.4, 53.2, 67.9, 65.7," 1,567" +5.161290322580645,5,a-picp-i1,2021-22,Westhampton-Westhampton Elementary School,03270005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 97 +5.145806451612903,5,a-picp-i1,2021-22,Weston-Country,03300010, 100.0, 100.0, 100.0, 98.8,"","","","","","","","","", 99.7, 291 +5.161290322580645,5,a-picp-i1,2021-22,Weston-Field Elementary School,03300012,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 264 +4.247741935483871,4.25,a-picp-i1,2021-22,Weston-Weston High,03300505,"","","","","","","","","", 100.0, 84.2, 68.2, 75.8, 82.3, 640 +5.150967741935483,5,a-picp-i1,2021-22,Weston-Weston Middle,03300305,"","","","","","", 100.0, 100.0, 99.4,"","","","", 99.8, 456 +5.1251612903225805,5,a-picp-i1,2021-22,Weston-Woodland,03300015, 100.0, 100.0, 96.6, 100.0,"","","","","","","","","", 99.3, 273 +5.161290322580645,5,a-picp-i1,2021-22,Westport-Alice A Macomber,03310015, 100.0,"","","","","","","","","","","","", 100.0, 113 +5.161290322580645,5,a-picp-i1,2021-22,Westport-Westport Elementary,03310030,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 442 +4.578064516129032,4.58,a-picp-i1,2021-22,Westport-Westport Middle-High School,03310515,"","","","","", 99.2, 98.5, 98.6, 100.0, 76.8, 72.8, 62.7, 72.9, 88.7, 830 +5.161290322580645,5,a-picp-i1,2021-22,Westwood-Deerfield School,03350010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 181 +5.161290322580645,5,a-picp-i1,2021-22,Westwood-Downey,03350012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 301 +5.145806451612903,5,a-picp-i1,2021-22,Westwood-E W Thurston Middle,03350305,"","","","","","", 99.6, 100.0, 99.5,"","","","", 99.7, 669 +5.161290322580645,5,a-picp-i1,2021-22,Westwood-Martha Jones,03350017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 275 +5.161290322580645,5,a-picp-i1,2021-22,Westwood-Paul Hanlon,03350015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 196 +3.6799999999999997,3.68,a-picp-i1,2021-22,Westwood-Westwood High,03350505,"","","","","","","","","", 75.7, 74.6, 64.1, 71.6, 71.3, 955 +5.161290322580645,5,a-picp-i1,2021-22,Westwood-William E Sheehan,03350025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 293 +5.135483870967742,5,a-picp-i1,2021-22,Weymouth-Abigail Adams Middle School,03360310,"","","","","","", 99.7, 99.3,"","","","","", 99.5, 821 +5.099354838709678,5,a-picp-i1,2021-22,Weymouth-Academy Avenue,03360005, 100.0, 98.2, 98.3, 95.9, 100.0, 100.0,"","","","","","","", 98.8, 347 +5.140645161290323,5,a-picp-i1,2021-22,Weymouth-Frederick C Murphy,03360050, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 285 +5.140645161290323,5,a-picp-i1,2021-22,Weymouth-Lawrence W Pingree,03360065, 100.0, 98.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 258 +5.063225806451612,5,a-picp-i1,2021-22,Weymouth-Ralph Talbot,03360085, 100.0, 97.9, 95.8, 100.0, 94.9, 100.0,"","","","","","","", 98.1, 267 +5.114838709677419,5,a-picp-i1,2021-22,Weymouth-Thomas V Nash,03360060, 100.0, 97.4, 97.5, 100.0, 100.0, 100.0,"","","","","","","", 99.1, 223 +5.161290322580645,5,a-picp-i1,2021-22,Weymouth-Thomas W. Hamilton Primary School,03360105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 346 +5.027096774193549,5,a-picp-i1,2021-22,Weymouth-Wessagusset,03360110, 100.0, 97.0, 95.8, 96.4, 95.2, 100.0,"","","","","","","", 97.4, 349 +2.0490322580645164,2.05,a-picp-i1,2021-22,Weymouth-Weymouth High School,03360505,"","","","","","","","", 98.5, 24.3, 31.9, 17.8, 23.9, 39.7," 2,300" +5.161290322580645,5,a-picp-i1,2021-22,Weymouth-William Seach,03360080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 375 +5.161290322580645,5,a-picp-i1,2021-22,Whately-Whately Elementary,03370005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 107 +5.161290322580645,5,a-picp-i1,2021-22,Whitman-Hanson-Hanson Middle School,07800315,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 461 +5.161290322580645,5,a-picp-i1,2021-22,Whitman-Hanson-Indian Head,07800035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 497 +5.161290322580645,5,a-picp-i1,2021-22,Whitman-Hanson-John H Duval,07800030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 434 +4.8670967741935485,4.87,a-picp-i1,2021-22,Whitman-Hanson-Louise A Conley,07800010, 61.1, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 94.3, 490 +1.9870967741935484,1.99,a-picp-i1,2021-22,Whitman-Hanson-Whitman Hanson Regional,07800505,"","","","","","","","","", 21.8, 39.4, 53.3, 37.1, 38.5," 1,084" +4.7380645161290325,4.74,a-picp-i1,2021-22,Whitman-Hanson-Whitman Middle,07800310,"","","","","","", 89.9, 100.0, 86.9,"","","","", 91.8, 513 +0.9238709677419354,1,a-picp-i1,2021-22,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605,"","","","","","","","","", 0.0, 6.5, 23.2, 45.3, 17.9," 1,263" +5.161290322580645,5,a-picp-i1,2021-22,Williamsburg-Anne T. Dunphy School,03400020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 126 +5.161290322580645,5,a-picp-i1,2021-22,Wilmington-Boutwell,03420005, 100.0,"","","","","","","","","","","","", 100.0, 95 +5.161290322580645,5,a-picp-i1,2021-22,Wilmington-North Intermediate,03420060,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 253 +5.161290322580645,5,a-picp-i1,2021-22,Wilmington-Shawsheen Elementary,03420025,"", 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2021-22,Wilmington-West Intermediate,03420080,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 212 +5.161290322580645,5,a-picp-i1,2021-22,Wilmington-Wildwood,03420015, 100.0,"","","","","","","","","","","","", 100.0, 119 +3.6335483870967744,3.63,a-picp-i1,2021-22,Wilmington-Wilmington High,03420505,"","","","","","","","","", 60.7, 70.8, 67.4, 79.7, 70.4, 706 +4.836129032258064,4.84,a-picp-i1,2021-22,Wilmington-Wilmington Middle School,03420330,"","","","","","", 93.3, 92.1, 95.3,"","","","", 93.7, 686 +5.161290322580645,5,a-picp-i1,2021-22,Wilmington-Woburn Street,03420020,"", 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 351 +5.161290322580645,5,a-picp-i1,2021-22,Winchendon-Memorial,03430040, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 296 +0.0,1,a-picp-i1,2021-22,Winchendon-Murdock Academy for Success,03430405,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 15 +3.489032258064516,3.49,a-picp-i1,2021-22,Winchendon-Murdock High School,03430515,"","","","","","","","","", 69.0, 74.6, 80.0, 50.0, 67.6, 259 +5.083870967741936,5,a-picp-i1,2021-22,Winchendon-Murdock Middle School,03430315,"","","","","","", 96.5, 98.7, 100.0,"","","","", 98.5, 262 +5.161290322580645,5,a-picp-i1,2021-22,Winchendon-Toy Town Elementary,03430050,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 299 +4.1651612903225805,4.17,a-picp-i1,2021-22,Winchester-Ambrose Elementary,03440045, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 80.7, 347 +4.578064516129032,4.58,a-picp-i1,2021-22,Winchester-Lincoln Elementary,03440005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.7, 344 +4.40258064516129,4.4,a-picp-i1,2021-22,Winchester-Lynch Elementary,03440020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.3, 463 +5.037419354838709,5,a-picp-i1,2021-22,Winchester-McCall Middle,03440305,"","","","","","", 97.7, 98.2, 96.8,"","","","", 97.6," 1,068" +4.418064516129032,4.42,a-picp-i1,2021-22,Winchester-Muraco Elementary,03440040, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.6, 341 +4.412903225806452,4.41,a-picp-i1,2021-22,Winchester-Vinson-Owen Elementary,03440025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.5, 392 +2.6477419354838707,2.65,a-picp-i1,2021-22,Winchester-Winchester High School,03440505,"","","","","","","","","", 61.5, 55.7, 46.5, 41.9, 51.3," 1,347" +5.109677419354838,5,a-picp-i1,2021-22,Winthrop-Arthur T. Cummings Elementary School,03460020,"","","", 100.0, 98.3, 98.7,"","","","","","","", 99.0, 410 +5.104516129032258,5,a-picp-i1,2021-22,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 97.4, 100.0, 99.4,"","","","","","","","","","", 98.9, 459 +2.750967741935484,2.75,a-picp-i1,2021-22,Winthrop-Winthrop High School,03460505,"","","","","","","","","", 81.0, 31.5, 34.9, 61.9, 53.3, 572 +5.135483870967742,5,a-picp-i1,2021-22,Winthrop-Winthrop Middle School,03460305,"","","","","","", 99.3, 100.0, 99.4,"","","","", 99.5, 444 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Clyde Reeves,03470040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 303 +4.304516129032258,4.3,a-picp-i1,2021-22,Woburn-Daniel L Joyce Middle School,03470410,"","","","","","", 52.2, 100.0, 97.8,"","","","", 83.4, 482 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Goodyear Elementary School,03470005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 307 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Hurld-Wyman Elementary School,03470020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 379 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-John F Kennedy Middle School,03470405,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 482 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Linscott-Rumford,03470025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 203 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Malcolm White,03470055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 294 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Mary D Altavesta,03470065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 225 +5.161290322580645,5,a-picp-i1,2021-22,Woburn-Shamrock,03470043, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 244 +2.833548387096774,2.83,a-picp-i1,2021-22,Woburn-Woburn High,03470505,"","","","","","","","","", 61.8, 56.9, 44.5, 54.7, 54.9," 1,257" +5.078709677419355,5,a-picp-i1,2021-22,Worcester-Belmont Street Community,03480020, 100.0, 98.8, 98.4, 100.0, 92.1, 100.0, 100.0,"","","","","","", 98.4, 507 +4.975483870967742,4.98,a-picp-i1,2021-22,Worcester-Burncoat Middle School,03480405,"","","","","","","", 95.7, 97.2,"","","","", 96.4, 670 +3.0658064516129033,3.07,a-picp-i1,2021-22,Worcester-Burncoat Senior High,03480503,"","","","","","","","","", 57.8, 63.4, 59.3, 56.4, 59.4," 1,120" +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Burncoat Street,03480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 239 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Canterbury,03480045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 253 +5.150967741935483,5,a-picp-i1,2021-22,Worcester-Chandler Elementary Community,03480050, 98.4, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.8, 419 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Chandler Magnet,03480052, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 400 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-City View,03480053, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 426 +3.8967741935483873,3.9,a-picp-i1,2021-22,Worcester-Claremont Academy,03480350,"","","","","","","", 98.9, 93.3, 92.7, 46.8, 30.3, 79.5, 75.5, 511 +5.109677419354838,5,a-picp-i1,2021-22,Worcester-Clark St Community,03480055, 100.0, 100.0, 95.7, 100.0, 97.0, 100.0, 100.0,"","","","","","", 99.0, 208 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Columbus Park,03480060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 333 +2.704516129032258,2.7,a-picp-i1,2021-22,Worcester-Doherty Memorial High,03480512,"","","","","","","","","", 57.1, 51.3, 62.5, 40.7, 52.4," 1,291" +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Elm Park Community,03480095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 394 +5.145806451612903,5,a-picp-i1,2021-22,Worcester-Flagg Street,03480090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3,"","","","","","", 99.7, 342 +4.743225806451613,4.74,a-picp-i1,2021-22,Worcester-Forest Grove Middle,03480415,"","","","","","","", 97.4, 86.2,"","","","", 91.9, 927 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Francis J McGrath Elementary,03480177, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 201 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Gates Lane,03480110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 463 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Goddard School/Science Technical,03480100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 352 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Grafton Street,03480115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 428 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Heard Street,03480136, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 234 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Jacob Hiatt Magnet,03480140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 304 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-La Familia Dual Language School,03480025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 134 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Lake View,03480145, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 303 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Lincoln Street,03480160, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 228 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-May Street,03480175, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 292 +5.109677419354838,5,a-picp-i1,2021-22,Worcester-Midland Street,03480185, 100.0, 100.0, 100.0, 93.9, 100.0, 100.0, 100.0,"","","","","","", 99.0, 203 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Nelson Place,03480200, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 509 +5.104516129032258,5,a-picp-i1,2021-22,Worcester-Norrback Avenue,03480202, 100.0, 98.1, 98.6, 98.8, 100.0, 100.0, 96.6,"","","","","","", 98.9, 448 +3.0141935483870967,3.01,a-picp-i1,2021-22,Worcester-North High,03480515,"","","","","","","","","", 14.7, 92.4, 96.7, 44.6, 58.4," 1,251" +5.145806451612903,5,a-picp-i1,2021-22,Worcester-Quinsigamond,03480210, 99.0, 100.0, 100.0, 100.0, 99.0, 100.0, 100.0,"","","","","","", 99.7, 643 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Rice Square,03480215, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 487 +5.150967741935483,5,a-picp-i1,2021-22,Worcester-Roosevelt,03480220, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 100.0,"","","","","","", 99.8, 408 +2.590967741935484,2.59,a-picp-i1,2021-22,Worcester-South High Community,03480520,"","","","","","","","","", 50.6, 42.7, 57.3, 51.8, 50.2," 1,491" +4.96,4.96,a-picp-i1,2021-22,Worcester-Sullivan Middle,03480423,"","","","","","", 100.0, 93.3, 98.2,"","","","", 96.1, 888 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Tatnuck,03480230, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 366 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Thorndyke Road,03480235, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 368 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Union Hill School,03480240, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 383 +3.7883870967741937,3.79,a-picp-i1,2021-22,Worcester-University Pk Campus School,03480285,"","","","","","","", 100.0, 100.0, 97.4, 100.0, 25.6, 5.9, 73.4, 233 +4.95483870967742,4.95,a-picp-i1,2021-22,Worcester-Vernon Hill School,03480280, 93.1, 91.3, 93.5, 100.0, 100.0, 95.1, 100.0,"","","","","","", 96.0, 424 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Wawecus Road School,03480026, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 120 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-West Tatnuck,03480260, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 287 +5.114838709677419,5,a-picp-i1,2021-22,Worcester-Woodland Academy,03480030, 100.0, 100.0, 95.7, 100.0, 100.0, 98.8, 100.0,"","","","","","", 99.1, 469 +5.161290322580645,5,a-picp-i1,2021-22,Worcester-Worcester Arts Magnet School,03480225, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 332 +5.073548387096774,5,a-picp-i1,2021-22,Worcester-Worcester East Middle,03480420,"","","","","","","", 97.7, 98.9,"","","","", 98.3, 761 +0.21677419354838712,1,a-picp-i1,2021-22,Worcester-Worcester Technical High,03480605,"","","","","","","","","", 3.1, 5.5, 3.9, 4.7, 4.2," 1,459" +5.161290322580645,5,a-picp-i1,2021-22,Worthington-R. H. Conwell,03490010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 54 +5.161290322580645,5,a-picp-i1,2021-22,Wrentham-Charles E Roderick,03500010,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 384 +5.161290322580645,5,a-picp-i1,2021-22,Wrentham-Delaney,03500003, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 471 4.949677419354839,4.95,a-picp-i1,2020-21,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, 100.0, 100.0, 89.7, 74.5, 72.6, 95.9," 1,425" 2.394838709677419,2.39,a-picp-i1,2020-21,Abington-Abington High,00010505,"","","","","","","","","", 44.1, 44.3, 39.2, 57.8, 46.4, 610 4.80516129032258,4.81,a-picp-i1,2020-21,Abington-Abington Middle School,00010405,"","","","","", 100.0, 100.0, 85.7, 87.1,"","","","", 93.1, 650 diff --git a/package.json b/package.json index d193db18..676dfe53 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,8 @@ "babel-preset-es2015": "^6.24.1", "bootstrap": "^5.1.3", "esbuild": "^0.13.6", - "sass": "^1.43.4" + "sass": "^1.43.4", + "debounce": "^1.2.1" }, "scripts": { "build": "esbuild app/javascript/*.* --bundle --outdir=app/assets/builds", diff --git a/spec/controllers/home_controller_spec.rb b/spec/controllers/home_controller_spec.rb index f1027225..9f69f85a 100644 --- a/spec/controllers/home_controller_spec.rb +++ b/spec/controllers/home_controller_spec.rb @@ -4,6 +4,11 @@ describe HomeController, type: :controller do let!(:categories) do [create(:category, name: 'Second', sort_index: 2), create(:category, name: 'First', sort_index: 1)] end + let(:academic_year) { create(:academic_year) } + + before :each do + academic_year + end it 'fetches categories sorted by sort_index' do get :index diff --git a/spec/javascript/home.spec.js b/spec/javascript/home.spec.js deleted file mode 100644 index 8e3b9fb7..00000000 --- a/spec/javascript/home.spec.js +++ /dev/null @@ -1,94 +0,0 @@ -import { initializeListenersForHomeDropdowns } from "home"; - -describe("School selection and go button", () => { - let changeDistrict, changeSchool, clickGo; - - beforeEach(() => { - window.schools = [ - { - district_id: 1, - url: "/school1url", - name: "school 1 name", - }, - { - district_id: 2, - url: "/school2url", - name: "school 2 name", - }, - ]; - - document.body.innerHTML = ` -
- - - -
`; - - const districtDropdown = document.getElementById("district-dropdown"); - changeDistrict = (districtName) => { - districtDropdown.value = Array.from(districtDropdown.children).find( - (element) => element.innerHTML === districtName - ).value; - - const event = new Event("change"); - districtDropdown.dispatchEvent(event); - }; - - changeSchool = (schoolName) => { - const schoolDropdown = document.getElementById("school-dropdown"); - schoolDropdown.value = Array.from(schoolDropdown.children).find( - (element) => element.innerHTML === schoolName - ).value; - const event = new Event("change"); - schoolDropdown.dispatchEvent(event); - }; - - clickGo = () => { - const goButton = document.querySelector('button[data-id="go-to-school"]'); - const clickEvent = new Event("click"); - goButton.dispatchEvent(clickEvent); - }; - - initializeListenersForHomeDropdowns(); - }); - - it("populates school dropdown only with schools from the selected district and the prompt", () => { - const schoolDropdown = document.getElementById("school-dropdown"); - - changeDistrict("District 1"); - expect(schoolDropdown.firstChild.innerHTML).toBe("Select a school"); - expect(schoolDropdown.childElementCount).toBe(2); - - changeDistrict("District 2"); - expect(schoolDropdown.childElementCount).toBe(2); - expect(Array.from(schoolDropdown.options).map((o) => o.text)).toContain( - "school 2 name" - ); - }); - - it("Clicking the go button redirects to the school url", () => { - delete window.location; - window.location = ""; - - changeDistrict("District 1"); - changeSchool("school 1 name"); - clickGo(); - expect(window.location).toBe("/school1url"); - }); - - it("enables School dropdown once a district is selected", () => { - const schoolDropdown = document.getElementById("school-dropdown"); - changeDistrict("District 1"); - expect(schoolDropdown.disabled).toBe(false); - }); - - it("enables Go button once a school is selected", () => { - changeDistrict("District 1"); - changeSchool("school 1 name"); - const goButton = document.querySelector('button[data-id="go-to-school"]'); - expect(goButton.disabled).toBe(false); - }); -}); diff --git a/spec/system/journey_spec.rb b/spec/system/journey_spec.rb index 4d509d1b..234a1498 100644 --- a/spec/system/journey_spec.rb +++ b/spec/system/journey_spec.rb @@ -163,8 +163,13 @@ def district_admin_sees_problem_solving_emphasis end def go_to_school_overview_from_welcome_page(district, school) + expect(page).to have_select('district', selected: 'Select a District') select district.name, from: 'district-dropdown' + expect(page).to have_select('school', selected: 'Select a School') + visit welcome_path({ district: district.id, school: school.id }) + expect(page).to have_select('school', selected: 'Winchester High School') select school.name, from: 'school-dropdown' + click_on 'Go' end diff --git a/spec/views/home/index.html.erb_spec.rb b/spec/views/home/index.html.erb_spec.rb index 773a7574..148b4f21 100644 --- a/spec/views/home/index.html.erb_spec.rb +++ b/spec/views/home/index.html.erb_spec.rb @@ -1,6 +1,8 @@ require 'rails_helper' describe 'home/index' do + let(:school) { create(:school) } + let(:district) { create(:district) } subject { Nokogiri::HTML(rendered) } before :each do diff --git a/yarn-error.log b/yarn-error.log index 9becfbf4..06e7a8a6 100644 --- a/yarn-error.log +++ b/yarn-error.log @@ -1,33 +1,39 @@ Arguments: - /usr/bin/node /usr/bin/yarn build:css --watch + /home/nelson/.nvm/versions/node/v18.7.0/bin/node /usr/share/yarn/bin/yarn.js watch:css PATH: - /home/nelson/.rvm/gems/ruby-3.0.2/bin:/home/nelson/.rvm/gems/ruby-3.0.2@global/bin:/home/nelson/.rvm/rubies/ruby-3.0.2/bin:/home/nelson/.rvm/bin:/home/nelson/.local/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/nelson/.rvm/bin:/home/nelson/bin:/home/nelson/.local/bin/:/home/nelson/.cargo/bin/:/usr/local/go/bin:/home/nelson/.local/share/gem/ruby/3.0.0/bin:/home/nelson/.npm-global/bin:/home/nelson/.local/share/nvim/lspinstall/efm:/home/nelson/.npm-global/bin:/home/nelson/go/bin:/home/nelson/.fzf/bin + /home/nelson/.nvm/versions/node/v18.7.0/bin:/home/nelson/.deno/bin:/tmp/frum_219001_1670601120678/bin:/home/nelson/.npm-global/bin:/home/nelson/.cargo/bin:/home/nelson/.local/bin:/home/nelson/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/nelson/.local/bin:/usr/local/go/bin:/home/nelson/go/bin/:/home/nelson/builds/puppet-editor-services Yarn version: - 1.22.15 + 1.22.19 Node version: - 16.10.0 + 18.7.0 Platform: linux x64 Trace: - SyntaxError: /home/nelson/workspace/mciea/edcontext/package.json: Unexpected token - in JSON at position 644 + SyntaxError: /home/nelson/workspace/rails/edcontext/package.json: Unexpected token } in JSON at position 559 at JSON.parse () - at /usr/lib/node_modules/yarn/lib/cli.js:1625:59 + at /usr/share/yarn/lib/cli.js:1629:59 at Generator.next () - at step (/usr/lib/node_modules/yarn/lib/cli.js:310:30) - at /usr/lib/node_modules/yarn/lib/cli.js:321:13 + at step (/usr/share/yarn/lib/cli.js:310:30) + at /usr/share/yarn/lib/cli.js:321:13 npm manifest: { "name": "app", + "description": "School quality framework", + "engines": { + "node": "18.x" + }, "private": "true", "dependencies": { "@babel/preset-env": "^7.15.8", + "@fortawesome/fontawesome-free": "^6.0.0-beta3", + "@hotwired/stimulus": "^3.0.1", + "@hotwired/turbo-rails": "^7.1.1", "@popperjs/core": "^2.10.2", "@rails/actioncable": "^6.0.0", "@rails/activestorage": "^6.0.0", @@ -35,19 +41,19 @@ npm manifest: "babel-preset-es2015": "^6.24.1", "bootstrap": "^5.1.3", "esbuild": "^0.13.6", - "sass": "^1.43.3", - "turbolinks": "^5.2.0" + "sass": "^1.43.4", }, "scripts": { "build": "esbuild app/javascript/*.* --bundle --outdir=app/assets/builds", "test": "jest", - "build:css": "sass ./app/assets/stylesheets/application.bootstrap.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules & - sass ./app/assets/stylesheets/sqm_application ./app/assets/builds/sqm_application.css --no-source-map --load-path=node_modules & - sass ./app/assets/stylesheets/welcome ./app/assets/builds/welcome.css --no-source-map --load-path=node_modules & - " + "build:css": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules ; sass ./app/assets/stylesheets/sqm.sass.scss ./app/assets/builds/sqm.css --no-source-map --load-path=node_modules ; sass ./app/assets/stylesheets/welcome.sass.scss ./app/assets/builds/welcome.css --no-source-map --load-path=node_modules", + "watch:css": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules --watch & sass ./app/assets/stylesheets/sqm.sass.scss ./app/assets/builds/sqm.css --no-source-map --load-path=node_modules --watch & sass ./app/assets/stylesheets/welcome.sass.scss ./app/assets/builds/welcome.css --no-source-map --load-path=node_modules --watch", + "watch:all": "yarn watch:css & yarn build --watch" }, "devDependencies": { - "jest": "^27.2.5" + "jest": "^27.2.5", + "markdownlint": "^0.25.1", + "prettier": "2.7.1" }, "jest": { "roots": [ @@ -69,66 +75,79 @@ Lockfile: # yarn lockfile v1 - "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.15.8": - version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.15.8.tgz#45990c47adadb00c03677baa89221f7cc23d2503" - integrity sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg== + "@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz" + integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== dependencies: - "@babel/highlight" "^7.14.5" + "@babel/highlight" "^7.16.7" - "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.15.0": + "@babel/compat-data@^7.13.11": version "7.15.0" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz" integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== - "@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5": - version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.8.tgz#195b9f2bffe995d2c6c159e72fe525b4114e8c10" - integrity sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og== - dependencies: - "@babel/code-frame" "^7.15.8" - "@babel/generator" "^7.15.8" - "@babel/helper-compilation-targets" "^7.15.4" - "@babel/helper-module-transforms" "^7.15.8" - "@babel/helpers" "^7.15.4" - "@babel/parser" "^7.15.8" - "@babel/template" "^7.15.4" - "@babel/traverse" "^7.15.4" - "@babel/types" "^7.15.6" + "@babel/compat-data@^7.15.0", "@babel/compat-data@^7.17.10": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.10.tgz" + integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw== + + "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.2", "@babel/core@^7.8.0": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.17.10.tgz" + integrity sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.17.10" + "@babel/helper-compilation-targets" "^7.17.10" + "@babel/helper-module-transforms" "^7.17.7" + "@babel/helpers" "^7.17.9" + "@babel/parser" "^7.17.10" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.17.10" + "@babel/types" "^7.17.10" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" - json5 "^2.1.2" + json5 "^2.2.1" semver "^6.3.0" - source-map "^0.5.0" - "@babel/generator@^7.15.4", "@babel/generator@^7.15.8", "@babel/generator@^7.7.2": - version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.8.tgz#fa56be6b596952ceb231048cf84ee499a19c0cd1" - integrity sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g== + "@babel/generator@^7.15.4", "@babel/generator@^7.17.10", "@babel/generator@^7.7.2": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.17.10.tgz" + integrity sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg== dependencies: - "@babel/types" "^7.15.6" + "@babel/types" "^7.17.10" + "@jridgewell/gen-mapping" "^0.1.0" jsesc "^2.5.1" - source-map "^0.5.0" "@babel/helper-annotate-as-pure@^7.14.5", "@babel/helper-annotate-as-pure@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz" integrity sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA== dependencies: "@babel/types" "^7.15.4" "@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz#21ad815f609b84ee0e3058676c33cf6d1670525f" + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz" integrity sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q== dependencies: "@babel/helper-explode-assignable-expression" "^7.15.4" "@babel/types" "^7.15.4" - "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.15.4": + "@babel/helper-compilation-targets@^7.13.0": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz" integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ== dependencies: "@babel/compat-data" "^7.15.0" @@ -136,9 +155,19 @@ Lockfile: browserslist "^4.16.6" semver "^6.3.0" + "@babel/helper-compilation-targets@^7.15.4", "@babel/helper-compilation-targets@^7.17.10": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz" + integrity sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ== + dependencies: + "@babel/compat-data" "^7.17.10" + "@babel/helper-validator-option" "^7.16.7" + browserslist "^4.20.2" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz#7f977c17bd12a5fba363cb19bea090394bf37d2e" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz" integrity sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw== dependencies: "@babel/helper-annotate-as-pure" "^7.15.4" @@ -150,7 +179,7 @@ Lockfile: "@babel/helper-create-regexp-features-plugin@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4" + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz" integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A== dependencies: "@babel/helper-annotate-as-pure" "^7.14.5" @@ -158,7 +187,7 @@ Lockfile: "@babel/helper-define-polyfill-provider@^0.2.2": version "0.2.3" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz" integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew== dependencies: "@babel/helper-compilation-targets" "^7.13.0" @@ -170,53 +199,75 @@ Lockfile: resolve "^1.14.2" semver "^6.1.2" + "@babel/helper-environment-visitor@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz" + integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== + dependencies: + "@babel/types" "^7.16.7" + "@babel/helper-explode-assignable-expression@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz#f9aec9d219f271eaf92b9f561598ca6b2682600c" + resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz" integrity sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g== dependencies: "@babel/types" "^7.15.4" - "@babel/helper-function-name@^7.14.5", "@babel/helper-function-name@^7.15.4": + "@babel/helper-function-name@^7.14.5": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz" integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw== dependencies: "@babel/helper-get-function-arity" "^7.15.4" "@babel/template" "^7.15.4" "@babel/types" "^7.15.4" + "@babel/helper-function-name@^7.15.4", "@babel/helper-function-name@^7.17.9": + version "7.17.9" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz" + integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== + dependencies: + "@babel/template" "^7.16.7" + "@babel/types" "^7.17.0" + "@babel/helper-get-function-arity@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" - integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA== + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz" + integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== dependencies: - "@babel/types" "^7.15.4" + "@babel/types" "^7.16.7" - "@babel/helper-hoist-variables@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" - integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA== + "@babel/helper-hoist-variables@^7.15.4", "@babel/helper-hoist-variables@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz" + integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== dependencies: - "@babel/types" "^7.15.4" + "@babel/types" "^7.16.7" - "@babel/helper-member-expression-to-functions@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef" - integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA== + "@babel/helper-member-expression-to-functions@^7.15.4", "@babel/helper-member-expression-to-functions@^7.16.7": + version "7.17.7" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz" + integrity sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw== dependencies: - "@babel/types" "^7.15.4" + "@babel/types" "^7.17.0" - "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5", "@babel/helper-module-imports@^7.15.4": + "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz" integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA== dependencies: "@babel/types" "^7.15.4" - "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.4", "@babel/helper-module-transforms@^7.15.8": + "@babel/helper-module-imports@^7.15.4", "@babel/helper-module-imports@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz" + integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== + dependencies: + "@babel/types" "^7.16.7" + + "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.4": version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz#d8c0e75a87a52e374a8f25f855174786a09498b2" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz" integrity sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg== dependencies: "@babel/helper-module-imports" "^7.15.4" @@ -228,30 +279,49 @@ Lockfile: "@babel/traverse" "^7.15.4" "@babel/types" "^7.15.6" - "@babel/helper-optimise-call-expression@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171" - integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw== - dependencies: - "@babel/types" "^7.15.4" - - "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + "@babel/helper-module-transforms@^7.17.7": + version "7.17.7" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz" + integrity sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw== + dependencies: + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-module-imports" "^7.16.7" + "@babel/helper-simple-access" "^7.17.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/helper-validator-identifier" "^7.16.7" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.17.3" + "@babel/types" "^7.17.0" + + "@babel/helper-optimise-call-expression@^7.15.4", "@babel/helper-optimise-call-expression@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz" + integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w== + dependencies: + "@babel/types" "^7.16.7" + + "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz" + integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== + + "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.3": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz" integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== "@babel/helper-remap-async-to-generator@^7.14.5", "@babel/helper-remap-async-to-generator@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz#2637c0731e4c90fbf58ac58b50b2b5a192fc970f" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz" integrity sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ== dependencies: "@babel/helper-annotate-as-pure" "^7.15.4" "@babel/helper-wrap-function" "^7.15.4" "@babel/types" "^7.15.4" - "@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.4": + "@babel/helper-replace-supers@^7.14.5": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz" integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw== dependencies: "@babel/helper-member-expression-to-functions" "^7.15.4" @@ -259,40 +329,51 @@ Lockfile: "@babel/traverse" "^7.15.4" "@babel/types" "^7.15.4" - "@babel/helper-simple-access@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b" - integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg== + "@babel/helper-replace-supers@^7.15.4": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz" + integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw== dependencies: - "@babel/types" "^7.15.4" + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-member-expression-to-functions" "^7.16.7" + "@babel/helper-optimise-call-expression" "^7.16.7" + "@babel/traverse" "^7.16.7" + "@babel/types" "^7.16.7" + + "@babel/helper-simple-access@^7.15.4", "@babel/helper-simple-access@^7.17.7": + version "7.17.7" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz" + integrity sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA== + dependencies: + "@babel/types" "^7.17.0" "@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb" + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz" integrity sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A== dependencies: "@babel/types" "^7.15.4" - "@babel/helper-split-export-declaration@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" - integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw== + "@babel/helper-split-export-declaration@^7.15.4", "@babel/helper-split-export-declaration@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz" + integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== dependencies: - "@babel/types" "^7.15.4" + "@babel/types" "^7.16.7" - "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7": - version "7.15.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" - integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== + "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7", "@babel/helper-validator-identifier@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz" + integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== - "@babel/helper-validator-option@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" - integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== + "@babel/helper-validator-option@^7.14.5", "@babel/helper-validator-option@^7.16.7": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz" + integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== "@babel/helper-wrap-function@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz#6f754b2446cfaf3d612523e6ab8d79c27c3a3de7" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz" integrity sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw== dependencies: "@babel/helper-function-name" "^7.15.4" @@ -300,32 +381,32 @@ Lockfile: "@babel/traverse" "^7.15.4" "@babel/types" "^7.15.4" - "@babel/helpers@^7.15.4": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43" - integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ== + "@babel/helpers@^7.17.9": + version "7.17.9" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz" + integrity sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q== dependencies: - "@babel/template" "^7.15.4" - "@babel/traverse" "^7.15.4" - "@babel/types" "^7.15.4" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.17.9" + "@babel/types" "^7.17.0" - "@babel/highlight@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" - integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== + "@babel/highlight@^7.16.7": + version "7.17.9" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz" + integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== dependencies: - "@babel/helper-validator-identifier" "^7.14.5" + "@babel/helper-validator-identifier" "^7.16.7" chalk "^2.0.0" js-tokens "^4.0.0" - "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.8", "@babel/parser@^7.7.2": - version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.8.tgz#7bacdcbe71bdc3ff936d510c15dcea7cf0b99016" - integrity sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA== + "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.15.4", "@babel/parser@^7.16.7", "@babel/parser@^7.17.10": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.17.10.tgz" + integrity sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ== "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz#dbdeabb1e80f622d9f0b583efb2999605e0a567e" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz" integrity sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -334,7 +415,7 @@ Lockfile: "@babel/plugin-proposal-async-generator-functions@^7.15.8": version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz#a3100f785fab4357987c4223ab1b02b599048403" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz" integrity sha512-2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -343,7 +424,7 @@ Lockfile: "@babel/plugin-proposal-class-properties@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz" integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg== dependencies: "@babel/helper-create-class-features-plugin" "^7.14.5" @@ -351,7 +432,7 @@ Lockfile: "@babel/plugin-proposal-class-static-block@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz#3e7ca6128453c089e8b477a99f970c63fc1cb8d7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz" integrity sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA== dependencies: "@babel/helper-create-class-features-plugin" "^7.15.4" @@ -360,7 +441,7 @@ Lockfile: "@babel/plugin-proposal-dynamic-import@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz" integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -368,7 +449,7 @@ Lockfile: "@babel/plugin-proposal-export-namespace-from@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz" integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -376,7 +457,7 @@ Lockfile: "@babel/plugin-proposal-json-strings@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz" integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -384,7 +465,7 @@ Lockfile: "@babel/plugin-proposal-logical-assignment-operators@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz" integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -392,7 +473,7 @@ Lockfile: "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz" integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -400,7 +481,7 @@ Lockfile: "@babel/plugin-proposal-numeric-separator@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz" integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -408,7 +489,7 @@ Lockfile: "@babel/plugin-proposal-object-rest-spread@^7.15.6": version "7.15.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz#ef68050c8703d07b25af402cb96cf7f34a68ed11" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz" integrity sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg== dependencies: "@babel/compat-data" "^7.15.0" @@ -419,7 +500,7 @@ Lockfile: "@babel/plugin-proposal-optional-catch-binding@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz" integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -427,7 +508,7 @@ Lockfile: "@babel/plugin-proposal-optional-chaining@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz" integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -436,7 +517,7 @@ Lockfile: "@babel/plugin-proposal-private-methods@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz" integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g== dependencies: "@babel/helper-create-class-features-plugin" "^7.14.5" @@ -444,7 +525,7 @@ Lockfile: "@babel/plugin-proposal-private-property-in-object@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz#55c5e3b4d0261fd44fe637e3f624cfb0f484e3e5" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz" integrity sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA== dependencies: "@babel/helper-annotate-as-pure" "^7.15.4" @@ -454,7 +535,7 @@ Lockfile: "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz" integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.14.5" @@ -462,133 +543,133 @@ Lockfile: "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-bigint@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-class-static-block@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-chaining@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-private-property-in-object@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript@^7.7.2": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" - integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz" + integrity sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ== dependencies: - "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-plugin-utils" "^7.16.7" "@babel/plugin-transform-arrow-functions@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz" integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-async-to-generator@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz" integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA== dependencies: "@babel/helper-module-imports" "^7.14.5" @@ -597,21 +678,21 @@ Lockfile: "@babel/plugin-transform-block-scoped-functions@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz" integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-block-scoping@^7.15.3": version "7.15.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz" integrity sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-classes@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz#50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz" integrity sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg== dependencies: "@babel/helper-annotate-as-pure" "^7.15.4" @@ -624,21 +705,21 @@ Lockfile: "@babel/plugin-transform-computed-properties@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz" integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-destructuring@^7.14.7": version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz" integrity sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz" integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.14.5" @@ -646,14 +727,14 @@ Lockfile: "@babel/plugin-transform-duplicate-keys@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz" integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-exponentiation-operator@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz" integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA== dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" @@ -661,14 +742,14 @@ Lockfile: "@babel/plugin-transform-for-of@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz#25c62cce2718cfb29715f416e75d5263fb36a8c2" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz" integrity sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-function-name@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz" integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ== dependencies: "@babel/helper-function-name" "^7.14.5" @@ -676,21 +757,21 @@ Lockfile: "@babel/plugin-transform-literals@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz" integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-member-expression-literals@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz" integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-modules-amd@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz" integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g== dependencies: "@babel/helper-module-transforms" "^7.14.5" @@ -699,7 +780,7 @@ Lockfile: "@babel/plugin-transform-modules-commonjs@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz#8201101240eabb5a76c08ef61b2954f767b6b4c1" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz" integrity sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA== dependencies: "@babel/helper-module-transforms" "^7.15.4" @@ -709,7 +790,7 @@ Lockfile: "@babel/plugin-transform-modules-systemjs@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz#b42890c7349a78c827719f1d2d0cd38c7d268132" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz" integrity sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw== dependencies: "@babel/helper-hoist-variables" "^7.15.4" @@ -720,7 +801,7 @@ Lockfile: "@babel/plugin-transform-modules-umd@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz" integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA== dependencies: "@babel/helper-module-transforms" "^7.14.5" @@ -728,21 +809,21 @@ Lockfile: "@babel/plugin-transform-named-capturing-groups-regex@^7.14.9": version "7.14.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz#c68f5c5d12d2ebaba3762e57c2c4f6347a46e7b2" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz" integrity sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.14.5" "@babel/plugin-transform-new-target@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz" integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-object-super@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz" integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -750,42 +831,42 @@ Lockfile: "@babel/plugin-transform-parameters@^7.15.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz#5f2285cc3160bf48c8502432716b48504d29ed62" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz" integrity sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-property-literals@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz" integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-regenerator@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz" integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg== dependencies: regenerator-transform "^0.14.2" "@babel/plugin-transform-reserved-words@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz" integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-shorthand-properties@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz" integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-spread@^7.15.8": version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz#79d5aa27f68d700449b2da07691dfa32d2f6d468" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz" integrity sha512-/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" @@ -793,35 +874,35 @@ Lockfile: "@babel/plugin-transform-sticky-regex@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz" integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-template-literals@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz" integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-typeof-symbol@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz" integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-unicode-escapes@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz" integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-unicode-regex@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz" integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.14.5" @@ -829,7 +910,7 @@ Lockfile: "@babel/preset-env@^7.15.8": version "7.15.8" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.15.8.tgz#f527ce5bcb121cd199f6b502bf23e420b3ff8dba" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz" integrity sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA== dependencies: "@babel/compat-data" "^7.15.0" @@ -908,7 +989,7 @@ Lockfile: "@babel/preset-modules@^0.1.4": version "0.1.4" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" + resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz" integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -919,23 +1000,23 @@ Lockfile: "@babel/runtime@^7.8.4": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz" integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== dependencies: regenerator-runtime "^0.13.4" - "@babel/template@^7.15.4", "@babel/template@^7.3.3": - version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" - integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg== + "@babel/template@^7.15.4", "@babel/template@^7.16.7", "@babel/template@^7.3.3": + version "7.16.7" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz" + integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/parser" "^7.15.4" - "@babel/types" "^7.15.4" + "@babel/code-frame" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/types" "^7.16.7" - "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2": + "@babel/traverse@^7.13.0": version "7.15.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz" integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA== dependencies: "@babel/code-frame" "^7.14.5" @@ -948,9 +1029,33 @@ Lockfile: debug "^4.1.0" globals "^11.1.0" - "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + "@babel/traverse@^7.15.4", "@babel/traverse@^7.16.7", "@babel/traverse@^7.17.10", "@babel/traverse@^7.17.3", "@babel/traverse@^7.17.9", "@babel/traverse@^7.7.2": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.10.tgz" + integrity sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.17.10" + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-function-name" "^7.17.9" + "@babel/helper-hoist-variables" "^7.16.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/parser" "^7.17.10" + "@babel/types" "^7.17.10" + debug "^4.1.0" + globals "^11.1.0" + + "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.17.10", "@babel/types@^7.3.0", "@babel/types@^7.3.3": + version "7.17.10" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.17.10.tgz" + integrity sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + to-fast-properties "^2.0.0" + + "@babel/types@^7.4.4": version "7.15.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz" integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig== dependencies: "@babel/helper-validator-identifier" "^7.14.9" @@ -958,12 +1063,35 @@ Lockfile: "@bcoe/v8-coverage@^0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + "@fortawesome/fontawesome-free@^6.0.0-beta3": + version "6.0.0-beta3" + resolved "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.0.0-beta3.tgz" + integrity sha512-4SqOuhC8tSLeQvbW1nDmq6T7+8vdSgHy/w7PRwCFzMQCbKuYFIir/3UuWsV1QblX1lt7SGlSgwbaCv9XhRt8HA== + + "@hotwired/stimulus@^3.0.1": + version "3.0.1" + resolved "https://registry.npmjs.org/@hotwired/stimulus/-/stimulus-3.0.1.tgz" + integrity sha512-oHsJhgY2cip+K2ED7vKUNd2P+BEswVhrCYcJ802DSsblJFv7mPFVk3cQKvm2vHgHeDVdnj7oOKrBbzp1u8D+KA== + + "@hotwired/turbo-rails@^7.1.1": + version "7.1.1" + resolved "https://registry.npmjs.org/@hotwired/turbo-rails/-/turbo-rails-7.1.1.tgz" + integrity sha512-ZXpxUjCfkdbuXfoGrsFK80qsVzACs8xCfie9rt2jMTSN6o1olXVA0Nrk8u02yNEwSiVJm/4QSOa8cUcMj6VQjg== + dependencies: + "@hotwired/turbo" "^7.1.0" + "@rails/actioncable" "^7.0" + + "@hotwired/turbo@^7.1.0": + version "7.1.0" + resolved "https://registry.npmjs.org/@hotwired/turbo/-/turbo-7.1.0.tgz" + integrity sha512-Q8kGjqwPqER+CtpQudbH+3Zgs2X4zb6pBAlr6NsKTXadg45pAOvxI9i4QpuHbwSzR2+x87HUm+rot9F/Pe8rxA== + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== dependencies: camelcase "^5.3.1" @@ -974,171 +1102,171 @@ Lockfile: "@istanbuljs/schema@^0.1.2": version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - "@jest/console@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.2.5.tgz#bddbf8d41c191f17b52bf0c9e6c0d18605e35d6e" - integrity sha512-smtlRF9vNKorRMCUtJ+yllIoiY8oFmfFG7xlzsAE76nKEwXNhjPOJIsc7Dv+AUitVt76t+KjIpUP9m98Crn2LQ== + "@jest/console@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz" + integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^27.2.5" - jest-util "^27.2.5" + jest-message-util "^27.5.1" + jest-util "^27.5.1" slash "^3.0.0" - "@jest/core@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.2.5.tgz#854c314708cee0d892ac4f531b9129f00a21ee69" - integrity sha512-VR7mQ+jykHN4WO3OvusRJMk4xCa2MFLipMS+43fpcRGaYrN1KwMATfVEXif7ccgFKYGy5D1TVXTNE4mGq/KMMA== + "@jest/core@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz" + integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== dependencies: - "@jest/console" "^27.2.5" - "@jest/reporters" "^27.2.5" - "@jest/test-result" "^27.2.5" - "@jest/transform" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/console" "^27.5.1" + "@jest/reporters" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.8.1" exit "^0.1.2" - graceful-fs "^4.2.4" - jest-changed-files "^27.2.5" - jest-config "^27.2.5" - jest-haste-map "^27.2.5" - jest-message-util "^27.2.5" - jest-regex-util "^27.0.6" - jest-resolve "^27.2.5" - jest-resolve-dependencies "^27.2.5" - jest-runner "^27.2.5" - jest-runtime "^27.2.5" - jest-snapshot "^27.2.5" - jest-util "^27.2.5" - jest-validate "^27.2.5" - jest-watcher "^27.2.5" + graceful-fs "^4.2.9" + jest-changed-files "^27.5.1" + jest-config "^27.5.1" + jest-haste-map "^27.5.1" + jest-message-util "^27.5.1" + jest-regex-util "^27.5.1" + jest-resolve "^27.5.1" + jest-resolve-dependencies "^27.5.1" + jest-runner "^27.5.1" + jest-runtime "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + jest-validate "^27.5.1" + jest-watcher "^27.5.1" micromatch "^4.0.4" rimraf "^3.0.0" slash "^3.0.0" strip-ansi "^6.0.0" - "@jest/environment@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.2.5.tgz#b85517ccfcec55690c82c56f5a01a3b30c5e3c84" - integrity sha512-XvUW3q6OUF+54SYFCgbbfCd/BKTwm5b2MGLoc2jINXQLKQDTCS2P2IrpPOtQ08WWZDGzbhAzVhOYta3J2arubg== + "@jest/environment@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz" + integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== dependencies: - "@jest/fake-timers" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/fake-timers" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" - jest-mock "^27.2.5" + jest-mock "^27.5.1" - "@jest/fake-timers@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.2.5.tgz#0c7e5762d7bfe6e269e7b49279b097a52a42f0a0" - integrity sha512-ZGUb6jg7BgwY+nmO0TW10bc7z7Hl2G/UTAvmxEyZ/GgNFoa31tY9/cgXmqcxnnZ7o5Xs7RAOz3G1SKIj8IVDlg== + "@jest/fake-timers@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz" + integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" "@sinonjs/fake-timers" "^8.0.1" "@types/node" "*" - jest-message-util "^27.2.5" - jest-mock "^27.2.5" - jest-util "^27.2.5" + jest-message-util "^27.5.1" + jest-mock "^27.5.1" + jest-util "^27.5.1" - "@jest/globals@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.2.5.tgz#4115538f98ed6cee4051a90fdbd0854062902099" - integrity sha512-naRI537GM+enFVJQs6DcwGYPn/0vgJNb06zGVbzXfDfe/epDPV73hP1vqO37PqSKDeOXM2KInr6ymYbL1HTP7g== + "@jest/globals@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz" + integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== dependencies: - "@jest/environment" "^27.2.5" - "@jest/types" "^27.2.5" - expect "^27.2.5" + "@jest/environment" "^27.5.1" + "@jest/types" "^27.5.1" + expect "^27.5.1" - "@jest/reporters@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.2.5.tgz#65198ed1f3f4449e3f656129764dc6c5bb27ebe3" - integrity sha512-zYuR9fap3Q3mxQ454VWF8I6jYHErh368NwcKHWO2uy2fwByqBzRHkf9j2ekMDM7PaSTWcLBSZyd7NNxR1iHxzQ== + "@jest/reporters@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz" + integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^27.2.5" - "@jest/test-result" "^27.2.5" - "@jest/transform" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/console" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" exit "^0.1.2" glob "^7.1.2" - graceful-fs "^4.2.4" + graceful-fs "^4.2.9" istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.3" + istanbul-lib-instrument "^5.1.0" istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - jest-haste-map "^27.2.5" - jest-resolve "^27.2.5" - jest-util "^27.2.5" - jest-worker "^27.2.5" + istanbul-reports "^3.1.3" + jest-haste-map "^27.5.1" + jest-resolve "^27.5.1" + jest-util "^27.5.1" + jest-worker "^27.5.1" slash "^3.0.0" source-map "^0.6.0" string-length "^4.0.1" terminal-link "^2.0.0" v8-to-istanbul "^8.1.0" - "@jest/source-map@^27.0.6": - version "27.0.6" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f" - integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g== + "@jest/source-map@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz" + integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== dependencies: callsites "^3.0.0" - graceful-fs "^4.2.4" + graceful-fs "^4.2.9" source-map "^0.6.0" - "@jest/test-result@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.2.5.tgz#e9f73cf6cd5e2cc6eb3105339248dea211f9320e" - integrity sha512-ub7j3BrddxZ0BdSnM5JCF6cRZJ/7j3wgdX0+Dtwhw2Po+HKsELCiXUTvh+mgS4/89mpnU1CPhZxe2mTvuLPJJg== + "@jest/test-result@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz" + integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== dependencies: - "@jest/console" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/console" "^27.5.1" + "@jest/types" "^27.5.1" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" - "@jest/test-sequencer@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.2.5.tgz#ed5ae91c00e623fb719111d58e380395e16cefbb" - integrity sha512-8j8fHZRfnjbbdMitMAGFKaBZ6YqvFRFJlMJzcy3v75edTOqc7RY65S9JpMY6wT260zAcL2sTQRga/P4PglCu3Q== + "@jest/test-sequencer@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz" + integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== dependencies: - "@jest/test-result" "^27.2.5" - graceful-fs "^4.2.4" - jest-haste-map "^27.2.5" - jest-runtime "^27.2.5" + "@jest/test-result" "^27.5.1" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-runtime "^27.5.1" - "@jest/transform@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.2.5.tgz#02b08862a56dbedddf0ba3c2eae41e049a250e29" - integrity sha512-29lRtAHHYGALbZOx343v0zKmdOg4Sb0rsA1uSv0818bvwRhs3TyElOmTVXlrw0v1ZTqXJCAH/cmoDXimBhQOJQ== + "@jest/transform@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz" + integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^27.2.5" - babel-plugin-istanbul "^6.0.0" + "@jest/types" "^27.5.1" + babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.4" - jest-haste-map "^27.2.5" - jest-regex-util "^27.0.6" - jest-util "^27.2.5" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-regex-util "^27.5.1" + jest-util "^27.5.1" micromatch "^4.0.4" - pirates "^4.0.1" + pirates "^4.0.4" slash "^3.0.0" source-map "^0.6.1" write-file-atomic "^3.0.0" - "@jest/types@^27.2.5": - version "27.2.5" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.2.5.tgz#420765c052605e75686982d24b061b4cbba22132" - integrity sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ== + "@jest/types@^27.5.1": + version "27.5.1" + resolved "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz" + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" @@ -1146,51 +1274,87 @@ Lockfile: "@types/yargs" "^16.0.0" chalk "^4.0.0" + "@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + + "@jridgewell/resolve-uri@^3.0.3": + version "3.0.6" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz" + integrity sha512-R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw== + + "@jridgewell/set-array@^1.0.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.0.tgz" + integrity sha512-SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg== + + "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.12" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.12.tgz" + integrity sha512-az/NhpIwP3K33ILr0T2bso+k2E/SLf8Yidd8mHl0n6sCQ4YdyC8qDhZA6kOPDNDBA56ZnIjngVl0U3jREA0BUA== + + "@jridgewell/trace-mapping@^0.3.9": + version "0.3.9" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@popperjs/core@^2.10.2": version "2.10.2" - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.2.tgz#0798c03351f0dea1a5a4cabddf26a55a7cbee590" + resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.10.2.tgz" integrity sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ== "@rails/actioncable@^6.0.0": version "6.1.4" - resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.4.tgz#c3c5a9f8302c429af9722b6c50ab48049016d2a3" + resolved "https://registry.npmjs.org/@rails/actioncable/-/actioncable-6.1.4.tgz" integrity sha512-0LmSKJTuo2dL6BQ+9xxLnS9lbkyfz2mBGeBnQ2J7o9Bn0l0q+ZC6VuoZMZZXPvABI4QT7Nfknv5WhfKYL+boew== + "@rails/actioncable@^7.0": + version "7.0.2" + resolved "https://registry.npmjs.org/@rails/actioncable/-/actioncable-7.0.2.tgz" + integrity sha512-G26maXW1Kx0LxQdmNNuNjQlRO/QlXNr3QfuwKiOKb5FZQGYe2OwtHTGXBAjSoiu4dW36XYMT/+L1Wo1Yov4ZXA== + "@rails/activestorage@^6.0.0": version "6.1.4" - resolved "https://registry.yarnpkg.com/@rails/activestorage/-/activestorage-6.1.4.tgz#7772f539cc846df5f4364fc57ccb48860f9e966e" + resolved "https://registry.npmjs.org/@rails/activestorage/-/activestorage-6.1.4.tgz" integrity sha512-1Tm8uaVBhLTDEG4YaFPvqguhjbUGSPVItm0CfkRpIFZIkybWzFAxatIrk4YVOOxB8ZdXS7GdeYa1qVwjdiDkgQ== dependencies: spark-md5 "^3.0.0" "@rails/ujs@^6.0.0": version "6.1.4" - resolved "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.1.4.tgz#093d5341595a02089ed309dec40f3c37da7b1b10" + resolved "https://registry.npmjs.org/@rails/ujs/-/ujs-6.1.4.tgz" integrity sha512-O3lEzL5DYbxppMdsFSw36e4BHIlfz/xusynwXGv3l2lhSlvah41qviRpsoAlKXxl37nZAqK+UUF5cnGGK45Mfw== "@sinonjs/commons@^1.7.0": version "1.8.3" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" + resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz" integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== dependencies: type-detect "4.0.8" "@sinonjs/fake-timers@^8.0.1": - version "8.0.1" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz#1c1c9a91419f804e59ae8df316a07dd1c3a76b94" - integrity sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew== + version "8.1.0" + resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz" + integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== dependencies: "@sinonjs/commons" "^1.7.0" "@tootallnate/once@1": version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": - version "7.1.16" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702" - integrity sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ== + version "7.1.19" + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz" + integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -1199,88 +1363,88 @@ Lockfile: "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" - integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== + version "7.6.4" + resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz" integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.14.2" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" - integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== + version "7.17.1" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz" + integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== dependencies: "@babel/types" "^7.3.0" "@types/graceful-fs@^4.1.2": version "4.1.5" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" + resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz" integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== dependencies: "@types/node" "*" "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" - integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== + version "2.0.4" + resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== "@types/istanbul-lib-report@*": version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^3.0.0": version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz" integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== dependencies: "@types/istanbul-lib-report" "*" "@types/node@*": - version "16.11.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.0.tgz#4b95f2327bacd1ef8f08d8ceda193039c5d7f52e" - integrity sha512-8MLkBIYQMuhRBQzGN9875bYsOhPnf/0rgXGo66S2FemHkhbn9qtsz9ywV1iCG+vbjigE4WUNVvw37Dx+L0qsPg== + version "17.0.31" + resolved "https://registry.npmjs.org/@types/node/-/node-17.0.31.tgz" + integrity sha512-AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q== "@types/prettier@^2.1.5": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.1.tgz#e1303048d5389563e130f5bdd89d37a99acb75eb" - integrity sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw== + version "2.6.0" + resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.0.tgz" + integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== "@types/stack-utils@^2.0.0": version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" + resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz" integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== "@types/yargs-parser@*": - version "20.2.1" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" - integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== + version "21.0.0" + resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== "@types/yargs@^16.0.0": version "16.0.4" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" + resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz" integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== dependencies: "@types/yargs-parser" "*" abab@^2.0.3, abab@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" - integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== + version "2.0.6" + resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== acorn-globals@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" + resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz" integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== dependencies: acorn "^7.1.1" @@ -1288,70 +1452,70 @@ Lockfile: acorn-walk@^7.1.1: version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== acorn@^7.1.1: version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== acorn@^8.2.4: - version "8.5.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" - integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q== + version "8.7.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz" + integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== agent-base@6: version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" ansi-escapes@^4.2.1: version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-regex@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-styles@^2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^5.0.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== dependencies: normalize-path "^3.0.0" @@ -1359,19 +1523,24 @@ Lockfile: argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" + argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= babel-code-frame@^6.26.0: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz" integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= dependencies: chalk "^1.1.3" @@ -1380,7 +1549,7 @@ Lockfile: babel-helper-call-delegate@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + resolved "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz" integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= dependencies: babel-helper-hoist-variables "^6.24.1" @@ -1390,7 +1559,7 @@ Lockfile: babel-helper-define-map@^6.24.1: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + resolved "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz" integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= dependencies: babel-helper-function-name "^6.24.1" @@ -1400,7 +1569,7 @@ Lockfile: babel-helper-function-name@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + resolved "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz" integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= dependencies: babel-helper-get-function-arity "^6.24.1" @@ -1411,7 +1580,7 @@ Lockfile: babel-helper-get-function-arity@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + resolved "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz" integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= dependencies: babel-runtime "^6.22.0" @@ -1419,7 +1588,7 @@ Lockfile: babel-helper-hoist-variables@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + resolved "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz" integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY= dependencies: babel-runtime "^6.22.0" @@ -1427,7 +1596,7 @@ Lockfile: babel-helper-optimise-call-expression@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + resolved "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz" integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= dependencies: babel-runtime "^6.22.0" @@ -1435,7 +1604,7 @@ Lockfile: babel-helper-regex@^6.24.1: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + resolved "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz" integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= dependencies: babel-runtime "^6.26.0" @@ -1444,7 +1613,7 @@ Lockfile: babel-helper-replace-supers@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + resolved "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz" integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo= dependencies: babel-helper-optimise-call-expression "^6.24.1" @@ -1454,56 +1623,56 @@ Lockfile: babel-traverse "^6.24.1" babel-types "^6.24.1" - babel-jest@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.2.5.tgz#6bbbc1bb4200fe0bfd1b1fbcbe02fc62ebed16aa" - integrity sha512-GC9pWCcitBhSuF7H3zl0mftoKizlswaF0E3qi+rPL417wKkCB0d+Sjjb0OfXvxj7gWiBf497ldgRMii68Xz+2g== + babel-jest@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz" + integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== dependencies: - "@jest/transform" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^27.2.0" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^27.5.1" chalk "^4.0.0" - graceful-fs "^4.2.4" + graceful-fs "^4.2.9" slash "^3.0.0" babel-messages@^6.23.0: version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz" integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= dependencies: babel-runtime "^6.22.0" babel-plugin-check-es2015-constants@^6.22.0: version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + resolved "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz" integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= dependencies: babel-runtime "^6.22.0" babel-plugin-dynamic-import-node@^2.3.3: version "2.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== dependencies: object.assign "^4.1.0" - babel-plugin-istanbul@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" - integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== + babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@istanbuljs/load-nyc-config" "^1.0.0" "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^4.0.0" + istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" - babel-plugin-jest-hoist@^27.2.0: - version "27.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz#79f37d43f7e5c4fdc4b2ca3e10cc6cf545626277" - integrity sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw== + babel-plugin-jest-hoist@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz" + integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -1512,7 +1681,7 @@ Lockfile: babel-plugin-polyfill-corejs2@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz" integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ== dependencies: "@babel/compat-data" "^7.13.11" @@ -1521,7 +1690,7 @@ Lockfile: babel-plugin-polyfill-corejs3@^0.2.5: version "0.2.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz#2779846a16a1652244ae268b1e906ada107faf92" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz" integrity sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw== dependencies: "@babel/helper-define-polyfill-provider" "^0.2.2" @@ -1529,28 +1698,28 @@ Lockfile: babel-plugin-polyfill-regenerator@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz" integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg== dependencies: "@babel/helper-define-polyfill-provider" "^0.2.2" babel-plugin-transform-es2015-arrow-functions@^6.22.0: version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz" integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz" integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-block-scoping@^6.24.1: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz" integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= dependencies: babel-runtime "^6.26.0" @@ -1561,7 +1730,7 @@ Lockfile: babel-plugin-transform-es2015-classes@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz" integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= dependencies: babel-helper-define-map "^6.24.1" @@ -1576,7 +1745,7 @@ Lockfile: babel-plugin-transform-es2015-computed-properties@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz" integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= dependencies: babel-runtime "^6.22.0" @@ -1584,14 +1753,14 @@ Lockfile: babel-plugin-transform-es2015-destructuring@^6.22.0: version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz" integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-duplicate-keys@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz" integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= dependencies: babel-runtime "^6.22.0" @@ -1599,14 +1768,14 @@ Lockfile: babel-plugin-transform-es2015-for-of@^6.22.0: version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz" integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-function-name@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz" integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= dependencies: babel-helper-function-name "^6.24.1" @@ -1615,14 +1784,14 @@ Lockfile: babel-plugin-transform-es2015-literals@^6.22.0: version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz" integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-modules-amd@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz" integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= dependencies: babel-plugin-transform-es2015-modules-commonjs "^6.24.1" @@ -1631,7 +1800,7 @@ Lockfile: babel-plugin-transform-es2015-modules-commonjs@^6.24.1: version "6.26.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz" integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== dependencies: babel-plugin-transform-strict-mode "^6.24.1" @@ -1641,7 +1810,7 @@ Lockfile: babel-plugin-transform-es2015-modules-systemjs@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz" integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= dependencies: babel-helper-hoist-variables "^6.24.1" @@ -1650,7 +1819,7 @@ Lockfile: babel-plugin-transform-es2015-modules-umd@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz" integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= dependencies: babel-plugin-transform-es2015-modules-amd "^6.24.1" @@ -1659,7 +1828,7 @@ Lockfile: babel-plugin-transform-es2015-object-super@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz" integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= dependencies: babel-helper-replace-supers "^6.24.1" @@ -1667,7 +1836,7 @@ Lockfile: babel-plugin-transform-es2015-parameters@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz" integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= dependencies: babel-helper-call-delegate "^6.24.1" @@ -1679,7 +1848,7 @@ Lockfile: babel-plugin-transform-es2015-shorthand-properties@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz" integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= dependencies: babel-runtime "^6.22.0" @@ -1687,14 +1856,14 @@ Lockfile: babel-plugin-transform-es2015-spread@^6.22.0: version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz" integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-sticky-regex@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz" integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= dependencies: babel-helper-regex "^6.24.1" @@ -1703,21 +1872,21 @@ Lockfile: babel-plugin-transform-es2015-template-literals@^6.22.0: version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz" integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-typeof-symbol@^6.22.0: version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz" integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= dependencies: babel-runtime "^6.22.0" babel-plugin-transform-es2015-unicode-regex@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz" integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= dependencies: babel-helper-regex "^6.24.1" @@ -1726,14 +1895,14 @@ Lockfile: babel-plugin-transform-regenerator@^6.24.1: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + resolved "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz" integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= dependencies: regenerator-transform "^0.10.0" babel-plugin-transform-strict-mode@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + resolved "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz" integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= dependencies: babel-runtime "^6.22.0" @@ -1741,7 +1910,7 @@ Lockfile: babel-preset-current-node-syntax@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" @@ -1759,7 +1928,7 @@ Lockfile: babel-preset-es2015@^6.24.1: version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" + resolved "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz" integrity sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk= dependencies: babel-plugin-check-es2015-constants "^6.22.0" @@ -1787,17 +1956,17 @@ Lockfile: babel-plugin-transform-es2015-unicode-regex "^6.24.1" babel-plugin-transform-regenerator "^6.24.1" - babel-preset-jest@^27.2.0: - version "27.2.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz#556bbbf340608fed5670ab0ea0c8ef2449fba885" - integrity sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg== + babel-preset-jest@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz" + integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== dependencies: - babel-plugin-jest-hoist "^27.2.0" + babel-plugin-jest-hoist "^27.5.1" babel-preset-current-node-syntax "^1.0.0" babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz" integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= dependencies: core-js "^2.4.0" @@ -1805,7 +1974,7 @@ Lockfile: babel-template@^6.24.1, babel-template@^6.26.0: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz" integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= dependencies: babel-runtime "^6.26.0" @@ -1816,7 +1985,7 @@ Lockfile: babel-traverse@^6.24.1, babel-traverse@^6.26.0: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz" integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= dependencies: babel-code-frame "^6.26.0" @@ -1831,7 +2000,7 @@ Lockfile: babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz" integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= dependencies: babel-runtime "^6.26.0" @@ -1841,47 +2010,58 @@ Lockfile: babylon@^6.18.0: version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== binary-extensions@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bootstrap@^5.1.3: version "5.1.3" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.1.3.tgz#ba081b0c130f810fa70900acbc1c6d3c28fa8f34" + resolved "https://registry.npmjs.org/bootstrap/-/bootstrap-5.1.3.tgz" integrity sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q== brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" - braces@^3.0.1, braces@~3.0.2: + braces@^3.0.2, braces@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" browser-process-hrtime@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - browserslist@^4.16.6, browserslist@^4.17.3: + browserslist@^4.16.6, browserslist@^4.20.2: + version "4.20.3" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.20.3.tgz" + integrity sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg== + dependencies: + caniuse-lite "^1.0.30001332" + electron-to-chromium "^1.4.118" + escalade "^3.1.1" + node-releases "^2.0.3" + picocolors "^1.0.0" + + browserslist@^4.17.3: version "4.17.4" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.4.tgz#72e2508af2a403aec0a49847ef31bd823c57ead4" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz" integrity sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ== dependencies: caniuse-lite "^1.0.30001265" @@ -1892,19 +2072,19 @@ Lockfile: bser@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== dependencies: node-int64 "^0.4.0" buffer-from@^1.0.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== call-bind@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" @@ -1912,27 +2092,27 @@ Lockfile: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase@^5.3.1: version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== camelcase@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" - integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== + version "6.3.0" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - caniuse-lite@^1.0.30001265: - version "1.0.30001267" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz#b1cf2937175afc0570e4615fc2d2f9069fa0ed30" - integrity sha512-r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg== + caniuse-lite@^1.0.30001265, caniuse-lite@^1.0.30001332: + version "1.0.30001335" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001335.tgz" + integrity sha512-ddP1Tgm7z2iIxu6QTtbZUv6HJxSaV/PZeSrWFZtbY4JZ69tOeNhBCl3HyRQgeNZKE5AOn1kpV7fhljigy0Ty3w== chalk@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= dependencies: ansi-styles "^2.2.1" @@ -1943,7 +2123,7 @@ Lockfile: chalk@^2.0.0: version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -1952,7 +2132,7 @@ Lockfile: chalk@^4.0.0: version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -1960,12 +2140,12 @@ Lockfile: char-regex@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== "chokidar@>=3.0.0 <4.0.0": version "3.5.2" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz" integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== dependencies: anymatch "~3.1.2" @@ -1978,19 +2158,19 @@ Lockfile: optionalDependencies: fsevents "~2.3.2" - ci-info@^3.1.1: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" - integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== + ci-info@^3.2.0: + version "3.3.0" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz" + integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== cjs-module-lexer@^1.0.0: version "1.2.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" + resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz" integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== cliui@^7.0.2: version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== dependencies: string-width "^4.2.0" @@ -1999,60 +2179,60 @@ Lockfile: co@^4.6.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= collect-v8-coverage@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= color-name@~1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== dependencies: safe-buffer "~5.1.1" core-js-compat@^3.16.0, core-js-compat@^3.16.2: version "3.18.3" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.18.3.tgz#e0e7e87abc55efb547e7fa19169e45fa9df27a67" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz" integrity sha512-4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw== dependencies: browserslist "^4.17.3" @@ -2060,12 +2240,12 @@ Lockfile: core-js@^2.4.0: version "2.6.12" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz" integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== cross-spawn@^7.0.3: version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -2074,108 +2254,125 @@ Lockfile: cssom@^0.4.4: version "0.4.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz" integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== cssom@~0.3.6: version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" + resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== dependencies: cssom "~0.3.6" data-urls@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== dependencies: abab "^2.0.3" whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" + debounce@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + debug@4, debug@^4.1.0, debug@^4.1.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" - integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" debug@^2.6.8: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" decimal.js@^10.2.1: version "10.3.1" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz" integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== dedent@^0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz" integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= deep-is@~0.1.3: version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== deepmerge@^4.2.2: version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== define-properties@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= detect-newline@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - diff-sequences@^27.0.6: - version "27.0.6" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" - integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ== + diff-sequences@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz" + integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== domexception@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" + resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== dependencies: webidl-conversions "^5.0.0" - electron-to-chromium@^1.3.867: - version "1.3.870" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz#c15c921e66a46985181b261f8093b91c2abb6604" - integrity sha512-PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA== + electron-to-chromium@^1.3.867, electron-to-chromium@^1.4.118: + version "1.4.130" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.130.tgz" + integrity sha512-Xmht+yS42G0QAzLBYFTuCYofQ3NGUBENPyW9hi8PxrVm3E76AVVdFNl3xxTJ8/N2L8XEUb29hOEMGh/GFnZHrA== emittery@^0.8.1: version "0.8.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" + resolved "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz" integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + entities@~2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz" + integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== + + error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + esbuild-android-arm64@0.13.6: version "0.13.6" resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.13.6.tgz#a109b4e5203e9ec144cadccdf18a5daf021423e5" @@ -2208,7 +2405,7 @@ Lockfile: esbuild-linux-64@0.13.6: version "0.13.6" - resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.13.6.tgz#554d8edfe3f791f8b26978eb173b2e13643442c0" + resolved "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.13.6.tgz" integrity sha512-bRQwsD+xJoajonfyeq5JpiNRogH4mYFYbYsGhwrtQ4pMGk93V/4KuKQiKEisRZO0hYhZL4MtxufwF195zKlCAw== esbuild-linux-arm64@0.13.6: @@ -2263,7 +2460,7 @@ Lockfile: esbuild@^0.13.6: version "0.13.6" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.13.6.tgz#b9be288108d47e814a6c8729e495dce0fddbf441" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.13.6.tgz" integrity sha512-zkMkYwC9ohVe6qxXykKf/4jfbtM/09CL8UEEnwuhO7Xq8NOTN2yAwCrmKKvHlGrEej6Y8e/tAmHB7wMMg7O0ew== optionalDependencies: esbuild-android-arm64 "0.13.6" @@ -2286,22 +2483,22 @@ Lockfile: escalade@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escape-string-regexp@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== escodegen@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" + resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz" integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== dependencies: esprima "^4.0.1" @@ -2313,22 +2510,22 @@ Lockfile: esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== estraverse@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" - integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== + version "5.3.0" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== execa@^5.0.0: version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== dependencies: cross-spawn "^7.0.3" @@ -2343,48 +2540,46 @@ Lockfile: exit@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - expect@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/expect/-/expect-27.2.5.tgz#16154aaa60b4d9a5b0adacfea3e4d6178f4b93fd" - integrity sha512-ZrO0w7bo8BgGoP/bLz+HDCI+0Hfei9jUSZs5yI/Wyn9VkG9w8oJ7rHRgYj+MA7yqqFa0IwHA3flJzZtYugShJA== + expect@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz" + integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== dependencies: - "@jest/types" "^27.2.5" - ansi-styles "^5.0.0" - jest-get-type "^27.0.6" - jest-matcher-utils "^27.2.5" - jest-message-util "^27.2.5" - jest-regex-util "^27.0.6" + "@jest/types" "^27.5.1" + jest-get-type "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-levenshtein@~2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= fb-watchman@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== dependencies: bser "2.1.1" fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" @@ -2392,7 +2587,7 @@ Lockfile: form-data@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz" integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== dependencies: asynckit "^0.4.0" @@ -2401,7 +2596,7 @@ Lockfile: fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@^2.3.2, fsevents@~2.3.2: @@ -2411,22 +2606,22 @@ Lockfile: function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== gensync@^1.0.0-beta.2: version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== get-caller-file@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.0.2: version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== dependencies: function-bind "^1.1.1" @@ -2435,24 +2630,24 @@ Lockfile: get-package-type@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== get-stream@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== dependencies: fs.realpath "^1.0.0" @@ -2464,63 +2659,63 @@ Lockfile: globals@^11.1.0: version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^9.18.0: version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + resolved "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz" integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== - graceful-fs@^4.2.4: - version "4.2.8" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" - integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== + graceful-fs@^4.2.9: + version "4.2.10" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== has-ansi@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= dependencies: ansi-regex "^2.0.0" has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-symbols@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" html-encoding-sniffer@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== dependencies: whatwg-encoding "^1.0.5" html-escaper@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== http-proxy-agent@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== dependencies: "@tootallnate/once" "1" @@ -2528,41 +2723,41 @@ Lockfile: debug "4" https-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" - integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + version "5.0.1" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: agent-base "6" debug "4" human-signals@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== iconv-lite@0.4.24: version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" import-local@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" - integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== + version "3.1.0" + resolved "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== dependencies: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" @@ -2570,102 +2765,101 @@ Lockfile: inherits@2: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== invariant@^2.2.2: version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" + is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" - is-ci@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994" - integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ== - dependencies: - ci-info "^3.1.1" - - is-core-module@^2.2.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" - integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== + is-core-module@^2.2.0, is-core-module@^2.8.1: + version "2.9.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz" + integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== dependencies: has "^1.0.3" is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-generator-fn@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-number@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-potential-custom-element-name@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" + resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-stream@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-typedarray@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - istanbul-lib-coverage@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.2.tgz#36786d4d82aad2ea5911007e255e2da6b5f80d86" - integrity sha512-o5+eTUYzCJ11/+JhW5/FUCdfsdoYVdQ/8I/OveE2XsjehYn5DdeSnNQAbjYaO8gQ6hvGTN6GM6ddQqpTVG5j8g== + istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" - integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== + istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: + version "5.2.0" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz" + integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== dependencies: - "@babel/core" "^7.7.5" + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" + istanbul-lib-coverage "^3.2.0" semver "^6.3.0" istanbul-lib-report@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== dependencies: istanbul-lib-coverage "^3.0.0" @@ -2674,445 +2868,439 @@ Lockfile: istanbul-lib-source-maps@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== dependencies: debug "^4.1.1" istanbul-lib-coverage "^3.0.0" source-map "^0.6.1" - istanbul-reports@^3.0.2: - version "3.0.5" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.5.tgz#a2580107e71279ea6d661ddede929ffc6d693384" - integrity sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ== + istanbul-reports@^3.1.3: + version "3.1.4" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz" + integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" - jest-changed-files@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.2.5.tgz#9dfd550d158260bcb6fa80aff491f5647f7daeca" - integrity sha512-jfnNJzF89csUKRPKJ4MwZ1SH27wTmX2xiAIHUHrsb/OYd9Jbo4/SXxJ17/nnx6RIifpthk3Y+LEeOk+/dDeGdw== + jest-changed-files@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz" + integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" execa "^5.0.0" throat "^6.0.1" - jest-circus@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.2.5.tgz#573256a6fb6e447ac2fc7e0ade9375013309037f" - integrity sha512-eyL9IcrAxm3Saq3rmajFCwpaxaRMGJ1KJs+7hlTDinXpJmeR3P02bheM3CYohE7UfwOBmrFMJHjgo/WPcLTM+Q== + jest-circus@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz" + integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== dependencies: - "@jest/environment" "^27.2.5" - "@jest/test-result" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/environment" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" dedent "^0.7.0" - expect "^27.2.5" + expect "^27.5.1" is-generator-fn "^2.0.0" - jest-each "^27.2.5" - jest-matcher-utils "^27.2.5" - jest-message-util "^27.2.5" - jest-runtime "^27.2.5" - jest-snapshot "^27.2.5" - jest-util "^27.2.5" - pretty-format "^27.2.5" + jest-each "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + jest-runtime "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + pretty-format "^27.5.1" slash "^3.0.0" stack-utils "^2.0.3" throat "^6.0.1" - jest-cli@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.2.5.tgz#88718c8f05f1c0f209152952ecd61afe4c3311bb" - integrity sha512-XzfcOXi5WQrXqFYsDxq5RDOKY4FNIgBgvgf3ZBz4e/j5/aWep5KnsAYH5OFPMdX/TP/LFsYQMRH7kzJUMh6JKg== + jest-cli@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz" + integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== dependencies: - "@jest/core" "^27.2.5" - "@jest/test-result" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/core" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" chalk "^4.0.0" exit "^0.1.2" - graceful-fs "^4.2.4" + graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^27.2.5" - jest-util "^27.2.5" - jest-validate "^27.2.5" + jest-config "^27.5.1" + jest-util "^27.5.1" + jest-validate "^27.5.1" prompts "^2.0.1" yargs "^16.2.0" - jest-config@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.2.5.tgz#c2e4ec6ea2bf4ffd2cae3d927999fe6159cba207" - integrity sha512-QdENtn9b5rIIYGlbDNEcgY9LDL5kcokJnXrp7x8AGjHob/XFqw1Z6p+gjfna2sUulQsQ3ce2Fvntnv+7fKYDhQ== + jest-config@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz" + integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^27.2.5" - "@jest/types" "^27.2.5" - babel-jest "^27.2.5" + "@babel/core" "^7.8.0" + "@jest/test-sequencer" "^27.5.1" + "@jest/types" "^27.5.1" + babel-jest "^27.5.1" chalk "^4.0.0" + ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.1" - graceful-fs "^4.2.4" - is-ci "^3.0.0" - jest-circus "^27.2.5" - jest-environment-jsdom "^27.2.5" - jest-environment-node "^27.2.5" - jest-get-type "^27.0.6" - jest-jasmine2 "^27.2.5" - jest-regex-util "^27.0.6" - jest-resolve "^27.2.5" - jest-runner "^27.2.5" - jest-util "^27.2.5" - jest-validate "^27.2.5" + graceful-fs "^4.2.9" + jest-circus "^27.5.1" + jest-environment-jsdom "^27.5.1" + jest-environment-node "^27.5.1" + jest-get-type "^27.5.1" + jest-jasmine2 "^27.5.1" + jest-regex-util "^27.5.1" + jest-resolve "^27.5.1" + jest-runner "^27.5.1" + jest-util "^27.5.1" + jest-validate "^27.5.1" micromatch "^4.0.4" - pretty-format "^27.2.5" + parse-json "^5.2.0" + pretty-format "^27.5.1" + slash "^3.0.0" + strip-json-comments "^3.1.1" - jest-diff@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.2.5.tgz#908f7a6aca5653824516ad30e0a9fd9767e53623" - integrity sha512-7gfwwyYkeslOOVQY4tVq5TaQa92mWfC9COsVYMNVYyJTOYAqbIkoD3twi5A+h+tAPtAelRxkqY6/xu+jwTr0dA== + jest-diff@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz" + integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== dependencies: chalk "^4.0.0" - diff-sequences "^27.0.6" - jest-get-type "^27.0.6" - pretty-format "^27.2.5" + diff-sequences "^27.5.1" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" - jest-docblock@^27.0.6: - version "27.0.6" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3" - integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA== + jest-docblock@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz" + integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== dependencies: detect-newline "^3.0.0" - jest-each@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.2.5.tgz#378118d516db730b92096a9607b8711165946353" - integrity sha512-HUPWIbJT0bXarRwKu/m7lYzqxR4GM5EhKOsu0z3t0SKtbFN6skQhpAUADM4qFShBXb9zoOuag5lcrR1x/WM+Ag== + jest-each@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz" + integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" chalk "^4.0.0" - jest-get-type "^27.0.6" - jest-util "^27.2.5" - pretty-format "^27.2.5" - - jest-environment-jsdom@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.2.5.tgz#21de3ad0e89441d961b592ba7561b16241279208" - integrity sha512-QtRpOh/RQKuXniaWcoFE2ElwP6tQcyxHu0hlk32880g0KczdonCs5P1sk5+weu/OVzh5V4Bt1rXuQthI01mBLg== - dependencies: - "@jest/environment" "^27.2.5" - "@jest/fake-timers" "^27.2.5" - "@jest/types" "^27.2.5" + jest-get-type "^27.5.1" + jest-util "^27.5.1" + pretty-format "^27.5.1" + + jest-environment-jsdom@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz" + integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/fake-timers" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" - jest-mock "^27.2.5" - jest-util "^27.2.5" + jest-mock "^27.5.1" + jest-util "^27.5.1" jsdom "^16.6.0" - jest-environment-node@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.2.5.tgz#ffa1afb3604c640ec841f044d526c65912e02cef" - integrity sha512-0o1LT4grm7iwrS8fIoLtwJxb/hoa3GsH7pP10P02Jpj7Mi4BXy65u46m89vEM2WfD1uFJQ2+dfDiWZNA2e6bJg== + jest-environment-node@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz" + integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== dependencies: - "@jest/environment" "^27.2.5" - "@jest/fake-timers" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/environment" "^27.5.1" + "@jest/fake-timers" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" - jest-mock "^27.2.5" - jest-util "^27.2.5" + jest-mock "^27.5.1" + jest-util "^27.5.1" - jest-get-type@^27.0.6: - version "27.0.6" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe" - integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg== + jest-get-type@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz" + integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== - jest-haste-map@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.2.5.tgz#0247b7299250643472bbcf5b4ad85c72d5178e2e" - integrity sha512-pzO+Gw2WLponaSi0ilpzYBE0kuVJstoXBX8YWyUebR8VaXuX4tzzn0Zp23c/WaETo7XYTGv2e8KdnpiskAFMhQ== + jest-haste-map@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz" + integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" "@types/graceful-fs" "^4.1.2" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" - graceful-fs "^4.2.4" - jest-regex-util "^27.0.6" - jest-serializer "^27.0.6" - jest-util "^27.2.5" - jest-worker "^27.2.5" + graceful-fs "^4.2.9" + jest-regex-util "^27.5.1" + jest-serializer "^27.5.1" + jest-util "^27.5.1" + jest-worker "^27.5.1" micromatch "^4.0.4" walker "^1.0.7" optionalDependencies: fsevents "^2.3.2" - jest-jasmine2@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.2.5.tgz#baaf96c69913c52bce0100000cf0721027c0fd66" - integrity sha512-hdxY9Cm/CjLqu2tXeAoQHPgA4vcqlweVXYOg1+S9FeFdznB9Rti+eEBKDDkmOy9iqr4Xfbq95OkC4NFbXXPCAQ== + jest-jasmine2@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz" + integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^27.2.5" - "@jest/source-map" "^27.0.6" - "@jest/test-result" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/environment" "^27.5.1" + "@jest/source-map" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" - expect "^27.2.5" + expect "^27.5.1" is-generator-fn "^2.0.0" - jest-each "^27.2.5" - jest-matcher-utils "^27.2.5" - jest-message-util "^27.2.5" - jest-runtime "^27.2.5" - jest-snapshot "^27.2.5" - jest-util "^27.2.5" - pretty-format "^27.2.5" + jest-each "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + jest-runtime "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + pretty-format "^27.5.1" throat "^6.0.1" - jest-leak-detector@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.2.5.tgz#e2edc3b37d38e8d9a527e10e456b403c3151b206" - integrity sha512-HYsi3GUR72bYhOGB5C5saF9sPdxGzSjX7soSQS+BqDRysc7sPeBwPbhbuT8DnOpijnKjgwWQ8JqvbmReYnt3aQ== + jest-leak-detector@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz" + integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== dependencies: - jest-get-type "^27.0.6" - pretty-format "^27.2.5" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" - jest-matcher-utils@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.2.5.tgz#4684faaa8eb32bf15e6edaead6834031897e2980" - integrity sha512-qNR/kh6bz0Dyv3m68Ck2g1fLW5KlSOUNcFQh87VXHZwWc/gY6XwnKofx76Qytz3x5LDWT09/2+yXndTkaG4aWg== + jest-matcher-utils@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz" + integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== dependencies: chalk "^4.0.0" - jest-diff "^27.2.5" - jest-get-type "^27.0.6" - pretty-format "^27.2.5" + jest-diff "^27.5.1" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" - jest-message-util@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.2.5.tgz#ed8b7b0965247bb875a49c1f9b9ab2d1d0820028" - integrity sha512-ggXSLoPfIYcbmZ8glgEJZ8b+e0Msw/iddRmgkoO7lDAr9SmI65IIfv7VnvTnV4FGnIIUIjzM+fHRHO5RBvyAbQ== + jest-message-util@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz" + integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" - graceful-fs "^4.2.4" + graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^27.2.5" + pretty-format "^27.5.1" slash "^3.0.0" stack-utils "^2.0.3" - jest-mock@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.2.5.tgz#0ec38d5ff1e49c4802e7a4a8179e8d7a2fd84de0" - integrity sha512-HiMB3LqE9RzmeMzZARi2Bz3NoymxyP0gCid4y42ca1djffNtYFKgI220aC1VP1mUZ8rbpqZbHZOJ15093bZV/Q== + jest-mock@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz" + integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" "@types/node" "*" jest-pnp-resolver@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" + resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - jest-regex-util@^27.0.6: - version "27.0.6" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5" - integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ== + jest-regex-util@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz" + integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== - jest-resolve-dependencies@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.2.5.tgz#fcd8eca005b3d11ba32da443045c028164b83be1" - integrity sha512-BSjefped31bcvvCh++/pN9ueqqN1n0+p8/58yScuWfklLm2tbPbS9d251vJhAy0ZI2pL/0IaGhOTJrs9Y4FJlg== + jest-resolve-dependencies@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz" + integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== dependencies: - "@jest/types" "^27.2.5" - jest-regex-util "^27.0.6" - jest-snapshot "^27.2.5" + "@jest/types" "^27.5.1" + jest-regex-util "^27.5.1" + jest-snapshot "^27.5.1" - jest-resolve@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.2.5.tgz#04dadbfc1312a2541f5c199c5011945e9cfe5cef" - integrity sha512-q5irwS3oS73SKy3+FM/HL2T7WJftrk9BRzrXF92f7net5HMlS7lJMg/ZwxLB4YohKqjSsdksEw7n/jvMxV7EKg== + jest-resolve@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz" + integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" chalk "^4.0.0" - escalade "^3.1.1" - graceful-fs "^4.2.4" - jest-haste-map "^27.2.5" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" jest-pnp-resolver "^1.2.2" - jest-util "^27.2.5" - jest-validate "^27.2.5" + jest-util "^27.5.1" + jest-validate "^27.5.1" resolve "^1.20.0" + resolve.exports "^1.1.0" slash "^3.0.0" - jest-runner@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.2.5.tgz#3d9d0626f351480bb2cffcfbbfac240c0097ebd4" - integrity sha512-n41vw9RLg5TKAnEeJK9d6pGOsBOpwE89XBniK+AD1k26oIIy3V7ogM1scbDjSheji8MUPC9pNgCrZ/FHLVDNgg== + jest-runner@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz" + integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== dependencies: - "@jest/console" "^27.2.5" - "@jest/environment" "^27.2.5" - "@jest/test-result" "^27.2.5" - "@jest/transform" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/console" "^27.5.1" + "@jest/environment" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" chalk "^4.0.0" emittery "^0.8.1" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-docblock "^27.0.6" - jest-environment-jsdom "^27.2.5" - jest-environment-node "^27.2.5" - jest-haste-map "^27.2.5" - jest-leak-detector "^27.2.5" - jest-message-util "^27.2.5" - jest-resolve "^27.2.5" - jest-runtime "^27.2.5" - jest-util "^27.2.5" - jest-worker "^27.2.5" + graceful-fs "^4.2.9" + jest-docblock "^27.5.1" + jest-environment-jsdom "^27.5.1" + jest-environment-node "^27.5.1" + jest-haste-map "^27.5.1" + jest-leak-detector "^27.5.1" + jest-message-util "^27.5.1" + jest-resolve "^27.5.1" + jest-runtime "^27.5.1" + jest-util "^27.5.1" + jest-worker "^27.5.1" source-map-support "^0.5.6" throat "^6.0.1" - jest-runtime@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.2.5.tgz#d144c3f6889b927aae1e695b63a41a3323b7016b" - integrity sha512-N0WRZ3QszKyZ3Dm27HTBbBuestsSd3Ud5ooVho47XZJ8aSKO/X1Ag8M1dNx9XzfGVRNdB/xCA3lz8MJwIzPLLA== - dependencies: - "@jest/console" "^27.2.5" - "@jest/environment" "^27.2.5" - "@jest/fake-timers" "^27.2.5" - "@jest/globals" "^27.2.5" - "@jest/source-map" "^27.0.6" - "@jest/test-result" "^27.2.5" - "@jest/transform" "^27.2.5" - "@jest/types" "^27.2.5" - "@types/yargs" "^16.0.0" + jest-runtime@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz" + integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/fake-timers" "^27.5.1" + "@jest/globals" "^27.5.1" + "@jest/source-map" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" execa "^5.0.0" - exit "^0.1.2" glob "^7.1.3" - graceful-fs "^4.2.4" - jest-haste-map "^27.2.5" - jest-message-util "^27.2.5" - jest-mock "^27.2.5" - jest-regex-util "^27.0.6" - jest-resolve "^27.2.5" - jest-snapshot "^27.2.5" - jest-util "^27.2.5" - jest-validate "^27.2.5" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-message-util "^27.5.1" + jest-mock "^27.5.1" + jest-regex-util "^27.5.1" + jest-resolve "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" slash "^3.0.0" strip-bom "^4.0.0" - yargs "^16.2.0" - jest-serializer@^27.0.6: - version "27.0.6" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1" - integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA== + jest-serializer@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz" + integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== dependencies: "@types/node" "*" - graceful-fs "^4.2.4" + graceful-fs "^4.2.9" - jest-snapshot@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.2.5.tgz#8a612fe31e2967f58ad364542198dff61f92ef32" - integrity sha512-2/Jkn+VN6Abwz0llBltZaiJMnL8b1j5Bp/gRIxe9YR3FCEh9qp0TXVV0dcpTGZ8AcJV1SZGQkczewkI9LP5yGw== + jest-snapshot@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz" + integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== dependencies: "@babel/core" "^7.7.2" "@babel/generator" "^7.7.2" - "@babel/parser" "^7.7.2" "@babel/plugin-syntax-typescript" "^7.7.2" "@babel/traverse" "^7.7.2" "@babel/types" "^7.0.0" - "@jest/transform" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" "@types/babel__traverse" "^7.0.4" "@types/prettier" "^2.1.5" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^27.2.5" - graceful-fs "^4.2.4" - jest-diff "^27.2.5" - jest-get-type "^27.0.6" - jest-haste-map "^27.2.5" - jest-matcher-utils "^27.2.5" - jest-message-util "^27.2.5" - jest-resolve "^27.2.5" - jest-util "^27.2.5" + expect "^27.5.1" + graceful-fs "^4.2.9" + jest-diff "^27.5.1" + jest-get-type "^27.5.1" + jest-haste-map "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + jest-util "^27.5.1" natural-compare "^1.4.0" - pretty-format "^27.2.5" + pretty-format "^27.5.1" semver "^7.3.2" - jest-util@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.2.5.tgz#88740c4024d223634a82ce7c2263e8bc6df3b3ba" - integrity sha512-QRhDC6XxISntMzFRd/OQ6TGsjbzA5ONO0tlAj2ElHs155x1aEr0rkYJBEysG6H/gZVH3oGFzCdAB/GA8leh8NQ== + jest-util@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz" + integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" "@types/node" "*" chalk "^4.0.0" - graceful-fs "^4.2.4" - is-ci "^3.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" picomatch "^2.2.3" - jest-validate@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.2.5.tgz#2d59bf1627d180f395ba58f24599b0ee0efcfbdf" - integrity sha512-XgYtjS89nhVe+UfkbLgcm+GgXKWgL80t9nTcNeejyO3t0Sj/yHE8BtIJqjZu9NXQksYbGImoQRXmQ1gP+Guffw== + jest-validate@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz" + integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== dependencies: - "@jest/types" "^27.2.5" + "@jest/types" "^27.5.1" camelcase "^6.2.0" chalk "^4.0.0" - jest-get-type "^27.0.6" + jest-get-type "^27.5.1" leven "^3.1.0" - pretty-format "^27.2.5" + pretty-format "^27.5.1" - jest-watcher@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.2.5.tgz#41cd3e64dc5bea8a4327083d71ba7667be400567" - integrity sha512-umV4qGozg2Dn6DTTtqAh9puPw+DGLK9AQas7+mWjiK8t0fWMpxKg8ZXReZw7L4C88DqorsGUiDgwHNZ+jkVrkQ== + jest-watcher@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz" + integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== dependencies: - "@jest/test-result" "^27.2.5" - "@jest/types" "^27.2.5" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" - jest-util "^27.2.5" + jest-util "^27.5.1" string-length "^4.0.1" - jest-worker@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.2.5.tgz#ed42865661959488aa020e8a325df010597c36d4" - integrity sha512-HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw== + jest-worker@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== dependencies: "@types/node" "*" merge-stream "^2.0.0" supports-color "^8.0.0" jest@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/jest/-/jest-27.2.5.tgz#7d8a5c8781a160f693beeb7c68e46c16ef948148" - integrity sha512-vDMzXcpQN4Ycaqu+vO7LX8pZwNNoKMhc+gSp6q1D8S6ftRk8gNW8cni3YFxknP95jxzQo23Lul0BI2FrWgnwYQ== + version "27.5.1" + resolved "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz" + integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ== dependencies: - "@jest/core" "^27.2.5" + "@jest/core" "^27.5.1" import-local "^3.0.2" - jest-cli "^27.2.5" + jest-cli "^27.5.1" "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-tokens@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz" integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= js-yaml@^3.13.1: version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" @@ -3120,7 +3308,7 @@ Lockfile: jsdom@^16.6.0: version "16.7.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz" integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== dependencies: abab "^2.0.5" @@ -3153,181 +3341,209 @@ Lockfile: jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== jsesc@~0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - json5@^2.1.2: - version "2.2.0" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" - integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== - dependencies: - minimist "^1.2.5" + json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + + json5@^2.2.1: + version "2.2.1" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== kleur@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== leven@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== levn@~0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= dependencies: prelude-ls "~1.1.2" type-check "~0.3.2" + lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + + linkify-it@^3.0.1: + version "3.0.3" + resolved "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz" + integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== + dependencies: + uc.micro "^1.0.1" + locate-path@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== dependencies: p-locate "^4.1.0" lodash.debounce@^4.0.8: version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= lodash@^4.17.4, lodash@^4.7.0: version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== loose-envify@^1.0.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" make-dir@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== dependencies: semver "^6.0.0" - makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= + makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + + markdown-it@12.3.2: + version "12.3.2" + resolved "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz" + integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== + dependencies: + argparse "^2.0.1" + entities "~2.1.0" + linkify-it "^3.0.1" + mdurl "^1.0.1" + uc.micro "^1.0.5" + + markdownlint@^0.25.1: + version "0.25.1" + resolved "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz" + integrity sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g== dependencies: - tmpl "1.0.x" + markdown-it "12.3.2" + + mdurl@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz" + integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= merge-stream@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== micromatch@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" - integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== + version "4.0.5" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: - braces "^3.0.1" - picomatch "^2.2.3" + braces "^3.0.2" + picomatch "^2.3.1" - mime-db@1.50.0: - version "1.50.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f" - integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A== + mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12: - version "2.1.33" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb" - integrity sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g== + version "2.1.35" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: - mime-db "1.50.0" + mime-db "1.52.0" mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" - minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - ms@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= ms@2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= node-int64@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= - node-modules-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - - node-releases@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.0.tgz#67dc74903100a7deb044037b8a2e5f453bb05400" - integrity sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA== + node-releases@^2.0.0, node-releases@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz" + integrity sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== npm-run-path@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" nwsapi@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.0: version "4.1.2" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== dependencies: call-bind "^1.0.0" @@ -3337,21 +3553,21 @@ Lockfile: once@^1.3.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= dependencies: wrappy "1" onetime@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" optionator@^0.8.1: version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== dependencies: deep-is "~0.1.3" @@ -3363,95 +3579,112 @@ Lockfile: p-limit@^2.2.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" p-locate@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== dependencies: p-limit "^2.2.0" p-try@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + parse5@6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - path-parse@^1.0.6: + path-parse@^1.0.6, path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== picocolors@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: + picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + + picomatch@^2.2.1: version "2.3.0" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz" integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== - pirates@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== - dependencies: - node-modules-regexp "^1.0.0" + pirates@^4.0.4: + version "4.0.5" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== pkg-dir@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" prelude-ls@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - pretty-format@^27.2.5: - version "27.2.5" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.2.5.tgz#7cfe2a8e8f01a5b5b29296a0b70f4140df0830c5" - integrity sha512-+nYn2z9GgicO9JiqmY25Xtq8SYfZ/5VCpEU3pppHHNAhd1y+ZXxmNPd1evmNcAd6Hz4iBV2kf0UpGth5A/VJ7g== + prettier@2.7.1: + version "2.7.1" + resolved "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz" + integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + + pretty-format@^27.5.1: + version "27.5.1" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz" + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== dependencies: - "@jest/types" "^27.2.5" ansi-regex "^5.0.1" ansi-styles "^5.0.0" react-is "^17.0.1" private@^0.1.6: version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== prompts@^2.0.1: version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== dependencies: kleur "^3.0.3" @@ -3459,51 +3692,51 @@ Lockfile: psl@^1.1.33: version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== punycode@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== react-is@^17.0.1: version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" regenerate-unicode-properties@^9.0.0: version "9.0.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326" + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz" integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA== dependencies: regenerate "^1.4.2" regenerate@^1.2.1, regenerate@^1.4.2: version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== regenerator-runtime@^0.11.0: version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz" integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== regenerator-runtime@^0.13.4: version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== regenerator-transform@^0.10.0: version "0.10.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz" integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== dependencies: babel-runtime "^6.18.0" @@ -3512,14 +3745,14 @@ Lockfile: regenerator-transform@^0.14.2: version "0.14.5" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" + resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== dependencies: "@babel/runtime" "^7.8.4" regexpu-core@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz" integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA= dependencies: regenerate "^1.2.1" @@ -3528,7 +3761,7 @@ Lockfile: regexpu-core@^4.7.1: version "4.8.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0" + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz" integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg== dependencies: regenerate "^1.4.2" @@ -3540,171 +3773,180 @@ Lockfile: regjsgen@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz" integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= regjsgen@^0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" + resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz" integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== regjsparser@^0.1.4: version "0.1.5" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz" integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= dependencies: jsesc "~0.5.0" regjsparser@^0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz" integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ== dependencies: jsesc "~0.5.0" require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= resolve-cwd@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== dependencies: resolve-from "^5.0.0" resolve-from@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - resolve@^1.14.2, resolve@^1.20.0: + resolve.exports@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz" + integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== + + resolve@^1.14.2: version "1.20.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== dependencies: is-core-module "^2.2.0" path-parse "^1.0.6" + resolve@^1.20.0: + version "1.22.0" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" + integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== + dependencies: + is-core-module "^2.8.1" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + rimraf@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== "safer-buffer@>= 2.1.2 < 3": version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - sass@^1.43.3: - version "1.43.3" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.43.3.tgz#aa16a69131b84f0cd23189a242571e8905f1ce43" - integrity sha512-BJnLngqWpMeS65UvlYYEuCb3/fLxDxhHtOB/gWPxs6NKrslTxGt3ZxwIvOe/0Jm4tWwM/+tIpE3wj4dLEhPDeQ== + sass@^1.43.4: + version "1.43.4" + resolved "https://registry.npmjs.org/sass/-/sass-1.43.4.tgz" + integrity sha512-/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg== dependencies: chokidar ">=3.0.0 <4.0.0" saxes@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" + resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz" integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== dependencies: xmlchars "^2.2.0" semver@7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" + resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== semver@^7.3.2: - version "7.3.5" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + version "7.3.7" + resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.5" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" - integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== + version "3.0.7" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== sisteransi@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== slash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== source-map-support@^0.5.6: - version "0.5.20" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9" - integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw== + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" - source-map@^0.5.0: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== source-map@^0.7.3: version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== spark-md5@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/spark-md5/-/spark-md5-3.0.2.tgz#7952c4a30784347abcee73268e473b9c0167e3fc" + resolved "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.2.tgz" integrity sha512-wcFzz9cDfbuqe0FZzfi2or1sgyIrsDwmPwfZC4hiNidPdPINjeUwNfv5kldczoEAcjl9Y1L3SM7Uz2PUEQzxQw== sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= stack-utils@^2.0.3: version "2.0.5" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" + resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz" integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== dependencies: escape-string-regexp "^2.0.0" string-length@^4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== dependencies: char-regex "^1.0.2" @@ -3712,7 +3954,7 @@ Lockfile: string-width@^4.1.0, string-width@^4.2.0: version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -3721,70 +3963,80 @@ Lockfile: strip-ansi@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= dependencies: ansi-regex "^2.0.0" strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-bom@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== strip-final-newline@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + supports-color@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-color@^8.0.0: version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" supports-hyperlinks@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" + resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz" integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== dependencies: has-flag "^4.0.0" supports-color "^7.0.0" + supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + symbol-tree@^3.2.4: version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== terminal-link@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== dependencies: ansi-escapes "^4.2.1" @@ -3792,7 +4044,7 @@ Lockfile: test-exclude@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== dependencies: "@istanbuljs/schema" "^0.1.2" @@ -3801,34 +4053,34 @@ Lockfile: throat@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" + resolved "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz" integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== - tmpl@1.0.x: + tmpl@1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== to-fast-properties@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz" integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" tough-cookie@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz" integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== dependencies: psl "^1.1.33" @@ -3837,48 +4089,48 @@ Lockfile: tr46@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" + resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz" integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== dependencies: punycode "^2.1.1" - turbolinks@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/turbolinks/-/turbolinks-5.2.0.tgz#e6877a55ea5c1cb3bb225f0a4ae303d6d32ff77c" - integrity sha512-pMiez3tyBo6uRHFNNZoYMmrES/IaGgMhQQM+VFF36keryjb5ms0XkVpmKHkfW/4Vy96qiGW3K9bz0tF5sK9bBw== - type-check@~0.3.2: version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= dependencies: prelude-ls "~1.1.2" type-detect@4.0.8: version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== type-fest@^0.21.3: version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== typedarray-to-buffer@^3.1.5: version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== dependencies: is-typedarray "^1.0.0" + uc.micro@^1.0.1, uc.micro@^1.0.5: + version "1.0.6" + resolved "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz" + integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== + unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== unicode-match-property-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== dependencies: unicode-canonical-property-names-ecmascript "^2.0.0" @@ -3886,23 +4138,23 @@ Lockfile: unicode-match-property-value-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" + resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz" integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== unicode-property-aliases-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8" + resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz" integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== universalify@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== v8-to-istanbul@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c" - integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA== + version "8.1.1" + resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz" + integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w== dependencies: "@types/istanbul-lib-coverage" "^2.0.1" convert-source-map "^1.6.0" @@ -3910,50 +4162,50 @@ Lockfile: w3c-hr-time@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== dependencies: browser-process-hrtime "^1.0.0" w3c-xmlserializer@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" + resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== dependencies: xml-name-validator "^3.0.0" walker@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= + version "1.0.8" + resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== dependencies: - makeerror "1.0.x" + makeerror "1.0.12" webidl-conversions@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== webidl-conversions@^6.1.0: version "6.1.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz" integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== whatwg-encoding@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== dependencies: iconv-lite "0.4.24" whatwg-mimetype@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== whatwg-url@^8.0.0, whatwg-url@^8.5.0: version "8.7.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz" integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== dependencies: lodash "^4.7.0" @@ -3962,19 +4214,19 @@ Lockfile: which@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" word-wrap@~1.2.3: version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== wrap-ansi@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -3983,12 +4235,12 @@ Lockfile: wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= write-file-atomic@^3.0.0: version "3.0.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== dependencies: imurmurhash "^0.1.4" @@ -3997,38 +4249,38 @@ Lockfile: typedarray-to-buffer "^3.1.5" ws@^7.4.6: - version "7.5.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" - integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w== + version "7.5.7" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz" + integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A== xml-name-validator@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== xmlchars@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== y18n@^5.0.5: version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yargs-parser@^20.2.2: version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== yargs@^16.2.0: version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== dependencies: cliui "^7.0.2" diff --git a/yarn.lock b/yarn.lock index f80c332c..a1e7775f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2205,6 +2205,11 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" +debounce@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + debug@4, debug@^4.1.0, debug@^4.1.1: version "4.3.4" resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"