{"version":3,"file":"PremiumPricingGuide-6ubfrxEw.js","sources":["../../../client/app/bundles/Teacher/components/shared/StripeSubscriptionCheckoutSessionButton.jsx","../../../client/app/bundles/Teacher/components/premium/premium_minis/basic_pricing_mini.jsx","../../../client/app/bundles/Teacher/components/premium/premium_minis/school_pricing_mini.jsx","../../../client/app/bundles/Teacher/components/premium/premium_minis/teacher_pricing_mini.jsx","../../../client/app/bundles/Teacher/components/premium/premium_pricing_minis_row.jsx","../../../client/app/bundles/Teacher/components/premium/school_premium.jsx","../../../client/app/bundles/Teacher/components/premium/subscriber_logos.jsx","../../../client/app/bundles/Teacher/components/scorebook/premium_banners/new_signup_banner.jsx","../../../client/app/bundles/Teacher/components/scorebook/premium_banners/free_trial_banner.jsx","../../../client/app/bundles/Teacher/components/scorebook/premium_banners/free_trial_status.jsx","../../../client/app/bundles/Teacher/components/scorebook/premium_banners/premium_banner_builder.jsx","../../../client/app/bundles/Teacher/containers/PremiumPricingGuide.jsx"],"sourcesContent":["import React from 'react';\n\nimport { requestPost } from '../../../../modules/request';\n\nexport const StripeSubscriptionCheckoutSessionButton = ({\n buttonClassName,\n buttonId,\n buttonText,\n cancelPath,\n customerEmail,\n schoolIds,\n stripePriceId,\n userIsEligibleForNewSubscription,\n userIsSignedIn\n}) => {\n\n const handleClick = () => {\n if (!userIsSignedIn) {\n alert('You must be logged in to activate Premium.')\n } else if (!userIsEligibleForNewSubscription) {\n alert(\n \"You have an active subscription and cannot buy premium now. If your subscription is a school subscription, you may buy Premium when it expires. If your subscription is a teacher one, please turn on recurring payments and we will renew it automatically when your subscription ends.\"\n )\n } else {\n const path = '/stripe_integration/subscription_checkout_sessions'\n const data = {\n cancel_path: cancelPath,\n customer_email: customerEmail,\n ...(schoolIds && { school_ids: schoolIds }),\n stripe_price_id: stripePriceId\n }\n\n requestPost(path, data, body => { window.location.replace(body.redirect_url) })\n }\n }\n\n return (\n \n {buttonText}\n \n )\n}\n\nexport default StripeSubscriptionCheckoutSessionButton\n","import React from 'react';\n\nimport IndividualFeaturesTable from './individual_features_table';\n\nconst getStartedButton = (userIsSignedIn) => {\n if (userIsSignedIn) { return }\n\n return Get started\n}\n\nconst BasicPricingMini = ({ userIsSignedIn, premiumFeatureData, }) => (\n
\n
\n

Basic

\n
\n

$0

\n

Free forever

\n
\n
\n {getStartedButton(userIsSignedIn)}\n
\n
\n \n
\n);\n\nexport default BasicPricingMini\n","import React from 'react';\n\nimport IndividualFeaturesTable from './individual_features_table';\n\nconst greenCheckSrc = `${process.env.CDN_URL}/images/icons/icons-check-green.svg`\n\nconst SchoolPricingMini = ({ plan, premiumFeatureData, showBadges, handleClickPurchasingOptions, }) => (\n\n
\n
\n

School and District Premium

\n
\n

${plan.price_in_dollars}

\n

Per school, per year

\n
\n
\n \n Purchasing options\n \n

Request Quote or Buy Now

\n
\n {showBadges &&
\n
\"Check Quill Academy
\n
\"Check Premium Hub
\n
\"Check Custom reports
\n
}\n
\n \n
\n);\n\nexport default SchoolPricingMini\n","import React from 'react';\n\nimport IndividualFeaturesTable from './individual_features_table';\n\nexport default class TeacherPricingMini extends React.Component {\n render() {\n const { buyNowButton, plan, premiumFeatureData} = this.props\n\n return (\n
\n
\n

{plan.display_name}

\n
\n

${plan.price_in_dollars}

\n

Per teacher, per year

\n
\n
\n {buyNowButton()}\n

Pay with Credit Card

\n
\n
\n\n \n
\n );\n }\n}\n","import React from 'react';\n\nimport { premiumFeatures, } from './premium_features_data';\nimport BasicPricingMini from './premium_minis/basic_pricing_mini.jsx';\nimport SchoolPricingMini from './premium_minis/school_pricing_mini.jsx';\nimport TeacherPricingMini from './premium_minis/teacher_pricing_mini.jsx';\n\nconst MOBILE_WIDTH = 991\nconst VERTICAL_INTERSECTION_OF_PREMIUM_PRICING_ROW_AND_TABLE = 337\n\nexport default class PremiumPricingMinisRow extends React.Component {\n state = {\n subscriptionType: null,\n subscriptionStatus: null,\n userIsSignedIn: !!Number(document.getElementById('current-user-id').getAttribute('content')),\n isScrolled: false\n };\n\n componentDidMount() {\n window.addEventListener('scroll', this.listenScrollEvent)\n }\n\n listenScrollEvent = e => {\n const { isScrolled, } = this.state\n if (window.scrollY > VERTICAL_INTERSECTION_OF_PREMIUM_PRICING_ROW_AND_TABLE && !isScrolled && window.innerWidth > MOBILE_WIDTH) {\n this.setState({isScrolled: true})\n } else if (window.scrollY < VERTICAL_INTERSECTION_OF_PREMIUM_PRICING_ROW_AND_TABLE && isScrolled) {\n this.setState({isScrolled: false})\n }\n }\n\n render() {\n const {\n diagnosticActivityCount,\n lessonsActivityCount,\n independentPracticeActivityCount,\n stripeSchoolPlan,\n stripeTeacherPlan,\n teacherBuyNowButton,\n onClickPurchasingOptions,\n } = this.props\n\n const { userIsSignedIn, isScrolled, } = this.state\n\n const premiumFeatureData = premiumFeatures({\n diagnosticActivityCount,\n lessonsActivityCount,\n independentPracticeActivityCount\n })\n\n return (\n \n
\n

Choose the plan that's right for you

\n

As a nonprofit dedicated to helping students, Quill will always provide 100% of our activities for free.

\n
\n
\n
\n \n \n \n
\n
\n
\n );\n }\n}\n","import React from 'react'\n\nconst baseImageLink = `${process.env.CDN_URL}/images/pages/premium`\n\nconst blueSchoolCircleSrc = `${baseImageLink}/illustrations-blue-school-circle.svg`\n\nconst teacherReportsSrc = `${baseImageLink}/illustrations-teacher-reports.svg`\nconst schoolDashboardSrc = `${baseImageLink}/illustrations-school-dashboard.svg`\nconst schoolSupportSrc = `${baseImageLink}/illustrations-school-support.svg`\n\nconst studentCompletingDiagnosticSrc = `${baseImageLink}/student-completing-diagnostic.webp`\nconst backwardsPlanningSrc = `${baseImageLink}/backwards-planning-book.webp`\nconst premiumReportLaptopSrc = `${baseImageLink}/premium-report-laptop.webp`\n\nconst erikaSrc = `${baseImageLink}/coach-erika.webp`\nconst shannonSrc = `${baseImageLink}/coach-shannon.webp`\n\nconst PremiumFeature = ({ imageSrc, imageAlt, header, text, popular, subheader, }) => (\n
\n
\n {imageAlt}\n {popular &&
Popular
}\n
\n

{header}

\n {subheader}\n

{text}

\n
\n)\n\nconst TopicExplored = ({color, imgSrc, imgAlt, text}) => (\n
\n
\n {imgAlt}\n
\n

{text}

\n
\n)\n\nconst actionableFeaturesAndSupport = (\n
\n

Actionable features and support

\n
\n \n \n \n
\n
\n)\n\nconst professionalDevelopmentSessions = (\n
\n

Professional development sessions

\n

Quill Premium for schools and districts includes live virtual workshop-style training and an asynchronous course library.

\n
\n \n \n \n
\n
\n)\n\nconst topicsExplored = (\n
\n

What are some topics explored?

\n
\n \n \n \n
\n
\n \n \n \n
\n
\n \n \n \n
\n
\n)\n\nconst coachingSessions = (\n
\n

What are people saying?

\n
\n)\n\nconst testimonials = (\n
\n
\n
\n

Totally personalized! I told the Quill coach my background and what my familiarity with Quill was, and she was able to walk me through exactly what I needed. Also appreciate that she could show me with her screen, walking through my classes with me.

\n Teacher, Glacier View Junior High School\n
\n
\n

I appreciated the time given to analyze our own data while in the training.

\n Teacher, Meeting Street Elementary at Burns\n
\n
\n

Our Quill coach is a really engaging facilitator! I appreciated her expertise and the built-in work time.

\n Director of Academics, Thurgood Marshall\n
\n
\n

I appreciated the facilitator's responsiveness to the needs specific to our network. I also appreciate the thoughtfulness of applying Quill remotely.

\n Administrator, Mastery Charter Schools\n
\n
\n

Our Quill coach was very knowledgeable and friendly. I felt as though I could ask her anything and there would be no judgement!!

\n Teacher, Union High School\n
\n
\n
\n)\n\nconst coachingTeam = (\n
\n

Meet the coaching team

\n
\n 15+ years in Education, Former MS English teacher and Academic Dean]}\n text=\"Expert in culturally responsive teaching practices, writing in the content areas and helping teachers practically use tools to facilitate learning through writing\"\n />\n 15+ years in Education, Former HS English Teacher and Director of Instruction]}\n text=\"Expert in data-informed instructional strategies and prioritizing the needs of special populations in writing practice routines\"\n />\n
\n
\n)\n\nconst SchoolPremium = () => {\n return(\n
\n
\n
\n \"Illustration\n
\n

School and District Premium

\n

We offer School Premium site licenses that provide access for all teachers at a school to both our free and teacher premium features. In addition, we offer school-wide professional development, administrative oversight and reporting, and individualized, ongoing support from our School Partnerships team.

\n
\n
\n {actionableFeaturesAndSupport}\n {professionalDevelopmentSessions}\n {topicsExplored}\n {coachingSessions}\n {testimonials}\n {coachingTeam}\n
\n
\n );\n};\n\nexport default SchoolPremium;\n\nSchoolPremium.displayName = 'SchoolPremium'\n","import React from 'react';\nexport default class SubscriberLogos extends React.Component {\n mapLogos = () => {\n const { subscribers, } = this.props\n const logos = subscribers.map(function(subscriber, index) {\n return (\n
\n {subscriber.name}\n
\n );\n });\n return logos;\n };\n\n render() {\n return (\n
\n

Trusted by some of the best schools

\n
\n {this.mapLogos()}\n
\n
\n );\n }\n}\n","import React from 'react';\n\nimport { PostNavigationBanner } from '../../../../Shared';\n\n\nexport default class NewSignUpBanner extends React.Component {\n stateSpecificComponents = () => {\n const { status } = this.props\n\n if (status === 'trial') {\n return

Success! You started your 30 day trial

\n } else {\n return

Success! You now have Premium

\n }\n };\n\n render() {\n const { stats } = this.props\n\n const headerText = stats === 'trial' ? \"Success! You started your 30 day trial\" : \"Success! You now have Premium\"\n return (\n \n );\n }\n}\n","import React from 'react';\n\nimport NewSignUpBanner from './new_signup_banner.jsx';\n\nimport { PostNavigationBanner } from '../../../../Shared';\nimport { requestPost } from '../../../../../modules/request/index';\n\n\nexport default class FreeTrialBanner extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = { trialStarted: false, };\n }\n\n beginTrial = () => {\n requestPost('/subscriptions', { subscription: { account_type: 'Teacher Trial', }, }, () => {\n this.setState({ trialStarted: true, })\n })\n }\n\n render() {\n const { trialStarted, } = this.state\n\n if (trialStarted) {\n return ();\n }\n return (\n \n );\n }\n}\n","import * as React from 'react';\n\nimport { PostNavigationBanner } from '../../../../Shared';\n\n\nconst FreeTrialStatus = ({ status, originPage, upgradeToPremiumNow, lastSubscriptionWasTrial, data, }) => {\n\n const headerText = status === 'trial' ? `You have ${data} days left in your trial.` : `Your Premium ${lastSubscriptionWasTrial ? 'Trial' : 'Subscription'} Has Expired`\n\n const upgradeButton = () => {\n if (originPage === 'premium') {\n return {\n onClick: upgradeToPremiumNow,\n standardButtonStyle: true,\n text: \"Upgrade to Premium Now\",\n target: \"\"\n }\n } else {\n return {\n href: \"/premium\",\n standardButtonStyle: true,\n text: \"Upgrade to Premium Now\",\n target: \"\"\n }\n }\n }\n\n return (\n \n );\n}\n\nexport default FreeTrialStatus\n","import $ from 'jquery'\nimport React from 'react'\n\nimport FreeTrialBanner from './free_trial_banner.jsx'\nimport FreeTrialStatus from './free_trial_status.jsx'\nimport NewSignUpBanner from './new_signup_banner.jsx'\n\nexport default class PremiumBannerBuilder extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n has_premium: null,\n trial_days_remaining: null,\n first_day_of_premium_or_trial: null\n };\n }\n\n componentDidMount() {\n this.fetchData();\n }\n\n fetchData = () => {\n let that = this;\n $.get('/teachers/classrooms/premium')\n .done(function(data) {\n that.setState({\n last_subscription_was_trial: data.last_subscription_was_trial,\n has_premium: data['hasPremium'],\n trial_days_remaining: data['trial_days_remaining'],\n first_day_of_premium_or_trial: data['first_day_of_premium_or_trial']});});\n };\n\n stateSpecificComponents = () => {\n const { has_premium, first_day_of_premium_or_trial, trial_days_remaining, last_subscription_was_trial, } = this.state\n\n const { originPage, upgradeToPremiumNow } = this.props\n if (has_premium === 'none'){\n return();\n }\n else if (first_day_of_premium_or_trial ){\n return();\n }\n else if ((has_premium === 'trial') || (has_premium === 'locked')){\n return(\n \n \n \n );\n }\n else if ((has_premium === 'school') || ((has_premium === 'paid') && (first_day_of_premium_or_trial === false))) {\n return ();\n }\n };\n\n hasPremium = () => {\n const { has_premium, first_day_of_premium_or_trial, } = this.state\n if ((has_premium === null) || (has_premium === 'school') || ((has_premium === 'paid') && (first_day_of_premium_or_trial === false))) {\n return ();\n } else\n {\n return (\n
\n
\n
\n {this.stateSpecificComponents()}\n
\n
\n
\n );\n }\n };\n\n render() {\n return (this.hasPremium());\n\n }\n}\n","import qs from 'qs';\nimport React from 'react';\n\nimport useSnackbarMonitor from '../../Shared/hooks/useSnackbarMonitor';\nimport { Snackbar, defaultSnackbarTimeout, } from '../../Shared/index';\nimport PremiumFeaturesTable from '../components/premium/premium_features_table.tsx';\nimport PremiumPricingMinisRow from '../components/premium/premium_pricing_minis_row.jsx';\nimport SchoolAndDistrictPremiumModal, { SCHOOL_SELECTION_STAGE, } from '../components/premium/school_and_district_premium_modal';\nimport SchoolPremium from '../components/premium/school_premium.jsx';\nimport SubscriberLogos from '../components/premium/subscriber_logos.jsx';\nimport PremiumBannerBuilder from '../components/scorebook/premium_banners/premium_banner_builder.jsx';\nimport StripeSubscriptionCheckoutSessionButton from '../components/shared/StripeSubscriptionCheckoutSessionButton';\n\nimport { requestPost } from '../../../modules/request';\n\n\nconst subscribers = [\n { name: 'Achievement first school logo', source: '/images/subscribers/1_achievement.png', id: 'achievement-first'},\n { name: 'KIPP: SF school logo', source: '/images/subscribers/2_kipp_sf.png', id: 'kipp-sf'},\n { name: 'KIPP: DC school logo', source: '/images/subscribers/3_kipp_dc.png', id: 'kipp-dc'},\n { name: 'KIPP: LA school logo', source: '/images/subscribers/4_kipp_la.png', id: 'kipp-la'},\n { name: 'Rocketship school logo', source: '/images/subscribers/5_kipp_rocketship.png', id: 'rocketship'},\n { name: 'Houston Independent School District logo', source: '/images/subscribers/6_houston.png', id: 'houston'},\n { name: 'Des Moines Public Schools logo', source: '/images/subscribers/7_desmoines.png', id: 'desmoines'},\n { name: 'Richmond Virginia Public Schools logo', source: '/images/subscribers/8_richmond.png', id: 'richmond'},\n { name: 'Putnam County Board of Education logo', source: '/images/subscribers/9_putnam.png', id: 'putnam'},\n { name: 'Elizabeth Public Schools logo', source: '/images/subscribers/10_elizabeth.png', id: 'elizabeth'},\n { name: 'North Thurston Public Schools logo', source: '/images/subscribers/11_thurston.png', id: 'thurston'},\n { name: 'Lead Public Schools logo', source: '/images/subscribers/12_lead.png', id: 'lead'},\n { name: 'Trinity Episcopal School logo', source: '/images/subscribers/13_trinity.png', id: 'trinity'},\n { name: 'Kuemper school logo', source: '/images/subscribers/14_kuemper.png', id: 'kuemper'},\n { name: 'Jordan School District logo', source: '/images/subscribers/15_jodan.png', id: 'jordan'},\n { name: 'Princeton Public Schools logo', source: '/images/subscribers/16_princeton.png', id: 'princeton'}\n]\n\nconst AlreadyHasPremiumModal = ({ type, close, }) => (\n
\n
\n
\n
\n

You already have a {type} subscription.

\n
\n

Please visit the My Subscriptions page to learn more.

\n
\n \n
\n
\n
\n)\n\nconst LoginToPurchaseModal = ({ close }) => (\n
\n
\n
\n
\n

Log in to purchase

\n
\n

Please log in to your Quill account to purchase Teacher Premium.

\n
\n \n
\n
\n
\n)\n\nexport const PremiumPricingGuide = ({\n customerEmail,\n diagnosticActivityCount,\n independentPracticeActivityCount,\n lessonsActivityCount,\n associatedSchools,\n eligibleSchools,\n stripeSchoolPlan,\n stripeTeacherPlan,\n userIsEligibleForNewSubscription,\n}) => {\n const openModalToSchoolSelection = window.location && qs.parse(window.location.search.replace('?', ''))[SCHOOL_SELECTION_STAGE]\n const [showSchoolAndDistrictPremiumModal, setShowSchoolAndDistrictPremiumModal] = React.useState(!!openModalToSchoolSelection)\n const [showAlreadyHasTeacherPremiumModal, setShowAlreadyHasTeacherPremiumModal] = React.useState(false)\n const [showAlreadyHasSchoolPremiumModal, setShowAlreadyHasSchoolPremiumModal] = React.useState(false)\n const [showLoginToPurchaseModal, setShowLoginToPurchaseModal] = React.useState(false)\n const [showSnackbar, setShowSnackbar] = React.useState(false)\n\n useSnackbarMonitor(showSnackbar, setShowSnackbar, defaultSnackbarTimeout)\n\n const userIsSignedIn = () => {\n return !!Number(document.getElementById('current-user-id').getAttribute('content'))\n }\n\n function closeSchoolAndDistrictPremiumModal() { setShowSchoolAndDistrictPremiumModal(false) }\n\n function openSchoolAndDistrictPremiumModal() { setShowSchoolAndDistrictPremiumModal(true) }\n\n function closeAlreadyHasSchoolPremiumModal() { setShowAlreadyHasSchoolPremiumModal(false) }\n\n function openAlreadyHasSchoolPremiumModal() { setShowAlreadyHasSchoolPremiumModal(true) }\n\n function closeAlreadyHasTeacherPremiumModal() { setShowAlreadyHasTeacherPremiumModal(false) }\n\n function openAlreadyHasTeacherPremiumModal() { setShowAlreadyHasTeacherPremiumModal(true) }\n\n function toggleLoginToPurchaseModal() { setShowLoginToPurchaseModal(!showLoginToPurchaseModal) }\n\n function handleNotListedSelection() {\n setShowSnackbar(true)\n closeSchoolAndDistrictPremiumModal()\n }\n\n function handleAlreadyPremiumSchoolSelection() {\n closeSchoolAndDistrictPremiumModal()\n openAlreadyHasSchoolPremiumModal()\n }\n\n function handleClickPurchasingOptions() {\n if (associatedSchools.length && !eligibleSchools.length) {\n openAlreadyHasSchoolPremiumModal()\n } else {\n openSchoolAndDistrictPremiumModal()\n }\n }\n\n const teacherBuyNowButton = () => {\n if(!customerEmail) {\n return \n } else if (!userIsEligibleForNewSubscription) {\n return \n }\n return (\n \n )\n }\n\n const upgradeToPremiumNow = () => {\n if (!userIsSignedIn()) {\n alert('You must be logged in to activate Premium.')\n } else if (!userIsEligibleForNewSubscription) {\n alert(\n \"You have an active subscription and cannot buy premium now. If your subscription is a school subscription, you may buy Premium when it expires. If your subscription is a teacher one, please turn on recurring payments and we will renew it automatically when your subscription ends.\"\n )\n } else {\n const path = '/stripe_integration/subscription_checkout_sessions'\n const data = {\n cancel_path: 'premium',\n customer_email: customerEmail,\n stripe_price_id: stripeTeacherPlan.plan.stripe_price_id\n }\n\n requestPost(path, data, body => { window.location.replace(body.redirect_url) })\n }\n }\n\n return (\n
\n
\n \n {userIsSignedIn() && }\n {showSchoolAndDistrictPremiumModal && (\n \n )}\n {showAlreadyHasSchoolPremiumModal && }\n {showAlreadyHasTeacherPremiumModal && }\n {showLoginToPurchaseModal && }\n
\n \n \n
\n
\n \n \n
\n
\n
\n )\n}\n\nexport default PremiumPricingGuide\n"],"names":["StripeSubscriptionCheckoutSessionButton","buttonClassName","buttonId","buttonText","cancelPath","customerEmail","schoolIds","stripePriceId","userIsEligibleForNewSubscription","userIsSignedIn","handleClick","path","data","requestPost","body","React","getStartedButton","BasicPricingMini","premiumFeatureData","IndividualFeaturesTable","greenCheckSrc","SchoolPricingMini","plan","showBadges","handleClickPurchasingOptions","TeacherPricingMini","buyNowButton","MOBILE_WIDTH","VERTICAL_INTERSECTION_OF_PREMIUM_PRICING_ROW_AND_TABLE","PremiumPricingMinisRow","e","isScrolled","diagnosticActivityCount","lessonsActivityCount","independentPracticeActivityCount","stripeSchoolPlan","stripeTeacherPlan","teacherBuyNowButton","onClickPurchasingOptions","premiumFeatures","baseImageLink","blueSchoolCircleSrc","teacherReportsSrc","schoolDashboardSrc","schoolSupportSrc","studentCompletingDiagnosticSrc","backwardsPlanningSrc","premiumReportLaptopSrc","erikaSrc","shannonSrc","PremiumFeature","imageSrc","imageAlt","header","text","popular","subheader","TopicExplored","color","imgSrc","imgAlt","actionableFeaturesAndSupport","professionalDevelopmentSessions","topicsExplored","coachingSessions","testimonials","coachingTeam","SchoolPremium","SubscriberLogos","subscribers","subscriber","index","NewSignUpBanner","status","stats","headerText","PostNavigationBanner","FreeTrialBanner","props","trialStarted","FreeTrialStatus","originPage","upgradeToPremiumNow","lastSubscriptionWasTrial","upgradeButton","React.createElement","PremiumBannerBuilder","that","$","has_premium","first_day_of_premium_or_trial","trial_days_remaining","last_subscription_was_trial","AlreadyHasPremiumModal","type","close","LoginToPurchaseModal","PremiumPricingGuide","associatedSchools","eligibleSchools","openModalToSchoolSelection","qs","SCHOOL_SELECTION_STAGE","showSchoolAndDistrictPremiumModal","setShowSchoolAndDistrictPremiumModal","showAlreadyHasTeacherPremiumModal","setShowAlreadyHasTeacherPremiumModal","showAlreadyHasSchoolPremiumModal","setShowAlreadyHasSchoolPremiumModal","showLoginToPurchaseModal","setShowLoginToPurchaseModal","showSnackbar","setShowSnackbar","useSnackbarMonitor","defaultSnackbarTimeout","closeSchoolAndDistrictPremiumModal","openSchoolAndDistrictPremiumModal","closeAlreadyHasSchoolPremiumModal","openAlreadyHasSchoolPremiumModal","closeAlreadyHasTeacherPremiumModal","openAlreadyHasTeacherPremiumModal","toggleLoginToPurchaseModal","handleNotListedSelection","handleAlreadyPremiumSchoolSelection","Snackbar","SchoolAndDistrictPremiumModal","PremiumFeaturesTable"],"mappings":"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"}