Commit 069dad14 authored by Ubuntu's avatar Ubuntu

init

parents

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
};
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_indentation' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',
'operators' => ['=>' => null],
],
'blank_line_after_namespace' => true,
'blank_line_after_opening_tag' => true,
'blank_line_before_statement' => [
'statements' => ['return'],
],
'braces' => true,
'cast_spaces' => true,
'class_attributes_separation' => [
'elements' => [
'const' => 'one',
'method' => 'one',
'property' => 'one',
'trait_import' => 'none',
],
],
'class_definition' => [
'multi_line_extends_each_single_line' => true,
'single_item_single_line' => true,
'single_line' => true,
],
'concat_space' => [
'spacing' => 'none',
],
'constant_case' => ['case' => 'lower'],
'declare_equal_normalize' => true,
'elseif' => true,
'encoding' => true,
'full_opening_tag' => true,
'fully_qualified_strict_types' => true, // added by Shift
'function_declaration' => true,
'function_typehint_space' => true,
'general_phpdoc_tag_rename' => true,
'heredoc_to_nowdoc' => true,
'include' => true,
'increment_style' => ['style' => 'post'],
'indentation_type' => true,
'linebreak_after_opening_tag' => true,
'line_ending' => true,
'lowercase_cast' => true,
'lowercase_keywords' => true,
'lowercase_static_reference' => true, // added from Symfony
'magic_method_casing' => true, // added from Symfony
'magic_constant_casing' => true,
'method_argument_space' => [
'on_multiline' => 'ignore',
],
'multiline_whitespace_before_semicolons' => [
'strategy' => 'no_multi_line',
],
'native_function_casing' => true,
'no_alias_functions' => true,
'no_extra_blank_lines' => [
'tokens' => [
'extra',
'throw',
'use',
],
],
'no_blank_lines_after_class_opening' => true,
'no_blank_lines_after_phpdoc' => true,
'no_closing_tag' => true,
'no_empty_phpdoc' => true,
'no_empty_statement' => true,
'no_leading_import_slash' => true,
'no_leading_namespace_whitespace' => true,
'no_mixed_echo_print' => [
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_short_bool_cast' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_spaces_after_function_name' => true,
'no_spaces_around_offset' => [
'positions' => ['inside', 'outside'],
],
'no_spaces_inside_parenthesis' => true,
'no_trailing_comma_in_list_call' => true,
'no_trailing_comma_in_singleline_array' => true,
'no_trailing_whitespace' => true,
'no_trailing_whitespace_in_comment' => true,
'no_unneeded_control_parentheses' => [
'statements' => ['break', 'clone', 'continue', 'echo_print', 'return', 'switch_case', 'yield'],
],
'no_unreachable_default_argument_value' => true,
'no_useless_return' => true,
'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true,
'normalize_index_brace' => true,
'not_operator_with_successor_space' => true,
'object_operator_without_whitespace' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'psr_autoloading' => true,
'phpdoc_indent' => true,
'phpdoc_inline_tag_normalizer' => true,
'phpdoc_no_access' => true,
'phpdoc_no_package' => true,
'phpdoc_no_useless_inheritdoc' => true,
'phpdoc_scalar' => true,
'phpdoc_single_line_var_spacing' => true,
'phpdoc_summary' => false,
'phpdoc_to_comment' => false, // override to preserve user preference
'phpdoc_tag_type' => true,
'phpdoc_trim' => true,
'phpdoc_types' => true,
'phpdoc_var_without_name' => true,
'self_accessor' => true,
'short_scalar_cast' => true,
'simplified_null_return' => false, // disabled as "risky"
'single_blank_line_at_eof' => true,
'single_blank_line_before_namespace' => true,
'single_class_element_per_statement' => [
'elements' => ['const', 'property'],
],
'single_import_per_statement' => true,
'single_line_after_imports' => true,
'single_line_comment_style' => [
'comment_types' => ['hash'],
],
'single_quote' => true,
'space_after_semicolon' => true,
'standardize_not_equals' => true,
'switch_case_semicolon_to_colon' => true,
'switch_case_space' => true,
'ternary_operator_spaces' => true,
'trailing_comma_in_multiline' => ['elements' => ['arrays']],
'trim_array_spaces' => true,
'unary_operator_spaces' => true,
'visibility_required' => [
'elements' => ['method', 'property'],
],
'whitespace_after_comma_in_array' => true,
];
$finder = Finder::create()
->in([
__DIR__ . '/src',
])
->name('*.php')
->notName('*.blade.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
return (new Config)
->setFinder($finder)
->setRules($rules)
->setRiskyAllowed(true)
->setUsingCache(true);
\ No newline at end of file
module.exports = {
presets: [['@babel/preset-env', { targets: { node: 'current' } }]],
}
{
"name": "casinodoggy/novapanel",
"description": "A wonderful administration interface for Laravel.",
"keywords": [
"laravel",
"admin"
],
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"require": {
"php": "^7.3|^8.0",
"brick/money": "^0.5.0|^0.6.0|^0.7.0",
"doctrine/dbal": "^2.13.3|^3.1.2",
"illuminate/support": "^8.83.4|^9.3.1",
"inertiajs/inertia-laravel": "^0.4.5|^0.5.2|^0.6.0",
"laravel/ui": "^3.3|^4.0",
"nesbot/carbon": "^2.53.1",
"rap2hpoutre/fast-excel": "^3.2|^4.1|^5.0",
"spatie/once": "^1.1|^2.0|^3.0",
"symfony/console": "^5.4|^6.0",
"symfony/finder": "^5.4|^6.0",
"symfony/polyfill-intl-icu": "^1.22.1",
"symfony/process": "^5.4|^6.0",
"ext-json": "*"
},
"require-dev": {
"laravel/nova-dusk-suite": "8.4.x-dev|9.4.x-dev",
"laravel/pint": "^1.0",
"laravel/scout": "^9.4",
"mockery/mockery": "^1.4.4",
"nunomaduro/larastan": "^1.0.1|^2.0",
"orchestra/testbench-dusk": "^6.24|^7.0",
"phpunit/phpunit": "^9.5.10",
"predis/predis": "^1.1.9|^2.0"
},
"autoload": {
"psr-4": {
"Laravel\\Nova\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Nova\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Nova\\NovaCoreServiceProvider"
],
"aliases": {
"Nova": "Laravel\\Nova\\Nova"
}
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"preferred-install": {
"laravel/nova-dusk-suite": "source",
"*": "auto"
},
"sort-packages": true
},
"scripts": {
"dusk:prepare": [
"./vendor/bin/dusk-updater detect --auto-update",
"@php -r \"file_exists('phpunit.dusk.xml') || copy('phpunit.dusk.xml.dist', 'phpunit.dusk.xml'); \"",
"@php -r \"if (file_exists('.env.dusk')) { copy('.env.dusk', 'vendor/laravel/nova-dusk-suite/.env'); } else { copy('.env.dusk.example', 'vendor/laravel/nova-dusk-suite/.env'); }\"",
"./vendor/bin/testbench-dusk package:discover"
],
"dusk:dev-assets": [
"npm ci",
"TAILWIND_MODE=build npm run dev",
"./vendor/bin/testbench-dusk nova:publish --force"
],
"dusk:assets": [
"npm ci",
"TAILWIND_MODE=build npm run prod",
"./vendor/bin/testbench-dusk nova:publish --force"
],
"dusk:test": [
"./vendor/bin/testbench-dusk package:dusk-purge",
"./vendor/bin/phpunit -c phpunit.dusk.xml"
],
"dusk:filter": [
"./vendor/bin/testbench-dusk package:dusk-purge && ./vendor/bin/phpunit -c phpunit.dusk.xml --filter"
]
},
"suggest": {
"ext-intl": "Required to format Currency field"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laravel/nova-dusk-suite"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"version": "4.19.5"
}
<?php
use Laravel\Nova\Actions\ActionResource;
use Laravel\Nova\Http\Middleware\Authenticate;
use Laravel\Nova\Http\Middleware\Authorize;
use Laravel\Nova\Http\Middleware\BootTools;
use Laravel\Nova\Http\Middleware\DispatchServingNovaEvent;
use Laravel\Nova\Http\Middleware\HandleInertiaRequests;
return [
'license_key' => env('NOVA_LICENSE_KEY', '123456789'),
'name' => "CD",
'domain' => env('NOVA_DOMAIN', 'cd.casinoman.app'),
'path' => '/cd/panel',
'guard' => env('NOVA_GUARD', 'web'),
'passwords' => env('NOVA_PASSWORDS', 'users'),
'middleware' => [
'web',
HandleInertiaRequests::class,
DispatchServingNovaEvent::class,
BootTools::class,
],
'api_middleware' => [
'nova',
Authenticate::class,
],
'pagination' => 'simple',
'storage_disk' => env('NOVA_STORAGE_DISK', 'public'),
'currency' => 'USD',
'brand' => [
'logo' => public_path('favicon.svg'),
'colors' => [
"300" => "56, 142, 60, 0.35",
"400" => "56, 142, 60, 0.45",
"500" => "56, 142, 60, 0.95",
"600" => "56, 142, 60, 0.65",
"700" => "56, 142, 60, 0.85",
]
],
'actions' => [
'resource' => ActionResource::class,
],
'impersonation' => [
'started' => '/cd',
'stopped' => '/cd',
],
];
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
use Illuminate\Support\Facades\Schema;
use Laravel\Nova\Util;
class CreateActionEventsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('action_events', function (Blueprint $table) {
$table->id();
$table->char('batch_id', 36);
$table->foreignIdFor(Util::userModel(), 'user_id')->index();
$table->string('name');
$table->morphs('actionable');
$table->morphs('target');
$table->string('model_type');
if (Builder::$defaultMorphKeyType === 'uuid') {
$table->uuid('model_id')->nullable();
} elseif (Builder::$defaultMorphKeyType === 'ulid') {
$table->ulid('model_id')->nullable();
} else {
$table->unsignedBigInteger('model_id')->nullable();
}
$table->text('fields');
$table->string('status', 25)->default('running');
$table->text('exception');
$table->timestamps();
$table->index(['batch_id', 'model_type', 'model_id']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('action_events');
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddFieldsToActionEventsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('action_events', function (Blueprint $table) {
$table->mediumText('original')->nullable();
$table->mediumText('changes')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('action_events', function (Blueprint $table) {
$table->dropColumn('original', 'changes');
});
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateNovaNotificationsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('nova_notifications', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('type');
$table->morphs('notifiable');
$table->text('data');
$table->timestamp('read_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('nova_notifications');
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddFieldsToNovaNotificationsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('nova_notifications', function (Blueprint $table) {
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropColumns('nova_notifications', ['deleted_at']);
}
}
const omit = require('lodash/omit')
const twColors = require('tailwindcss/colors')
const toRGBString = hexCode => {
if (hexCode.startsWith('#')) {
let hex = hexCode.replace('#', '')
if (hex.length === 3) {
hex = `${hex[0]}${hex[0]}${hex[1]}${hex[1]}${hex[2]}${hex[2]}`
}
const r = parseInt(hex.substring(0, 2), 16)
const g = parseInt(hex.substring(2, 4), 16)
const b = parseInt(hex.substring(4, 6), 16)
return `${r}, ${g}, ${b}`
}
return hexCode
}
const colors = { primary: twColors.sky, ...twColors, gray: twColors.slate }
const except = omit(colors, [
'lightBlue',
'warmGray',
'trueGray',
'coolGray',
'blueGray',
])
function generateRootCSSVars() {
return Object.fromEntries(
Object.entries(except)
.map(([key, value]) => {
if (typeof value === 'string') {
return [[`--colors-${key}`, toRGBString(value)]]
}
return Object.entries(value).map(([shade, color]) => {
return [`--colors-${key}-${shade}`, toRGBString(color)]
})
})
.flat(1)
)
}
function generateTailwindColors() {
return Object.fromEntries(
Object.entries(except).map(([key, value]) => {
if (typeof value === 'string') {
return [`${key}`, value]
}
return [
key,
Object.fromEntries(
Object.entries(value).map(([shade]) => {
return [`${shade}`, `rgba(var(--colors-${key}-${shade}))`]
})
),
]
})
)
}
module.exports = {
generateRootCSSVars,
generateTailwindColors,
}
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/en/configuration.html
*/
module.exports = {
// Automatically clear mock calls and instances between every test
clearMocks: true,
// An array of file extensions your modules use
moduleFileExtensions: ['js', 'json', 'vue'],
// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
moduleNameMapper: {
'@/(.*)': '<rootDir>/resources/js/$1',
},
// The test environment that will be used for testing
testEnvironment: 'node',
// The glob patterns Jest uses to detect test files
testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[tj]s?(x)'],
// A map from regular expressions to paths to transformers
transform: {
'^.+\\.js$': 'babel-jest',
'^.+\\.vue$': '@vue/vue3-jest',
},
// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
transformIgnorePatterns: [],
}
{
"/public/app.js": "/public/app.js"
}
This diff is collapsed.
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "./node_modules/.bin/jest"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@tailwindcss/typography": "^0.5.4",
"@vue/babel-plugin-jsx": "^1.1.0",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/compiler-sfc": "^3.2.29",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"axios": "^0.21.2",
"babel-jest": "^27.4.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"cross-env": "^5.0.0",
"jest": "^27.4.7",
"laravel-mix": "^6.0.41",
"lodash": "^4.17.21",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"postcss-rtlcss": "^3.6.3",
"prettier": "^2.5.1",
"tailwindcss": "^3.2.0",
"vue-loader": "^16.8.3",
"vue-template-compiler": "^2.6.14"
},
"dependencies": {
"@github/time-elements": "^3.1.2",
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue3": "^0.6.0",
"@inertiajs/progress": "^0.2.7",
"@popperjs/core": "^2.11.2",
"@vue/compat": "^3.2.29",
"autosize": "^4.0.2",
"browser-sync": "^2.27.7",
"browser-sync-webpack-plugin": "^2.3.0",
"chartist": "^0.11.0",
"chartist-plugin-tooltips-updated": "^0.1.4",
"codemirror": "^5.65.1",
"colortranslator": "^1.9.2",
"floating-vue": "^2.0.0-beta.16",
"form-backend-validation": "^2.3.3",
"inflector-js": "^1.0.1",
"js-cookie": "^2.2.1",
"laravel-echo": "^1.11.3",
"laravel-vapor": "^0.4.0",
"luxon": "^1.27.0",
"mousetrap": "^1.6.3",
"numbro": "^2.3.6",
"places.js": "^1.7.3",
"pusher-js": "^7.0.4",
"slugify": "^1.6.5",
"tiny-emitter": "^2.1.0",
"toastedjs": "0.0.2",
"trix": "^1.0.0",
"uid": "^2.0.0",
"vue": "^3.2.29",
"vuex": "^4.0.2"
},
"babel": {
"plugins": [
"@vue/babel-plugin-jsx"
]
}
}
{
"preset": "laravel"
}
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
singleQuote: true,
trailingComma: 'es5',
bracketSpacing: true,
jsxBracketSameLine: false,
semi: false,
requirePragma: false,
proseWrap: 'preserve',
arrowParens: 'avoid',
overrides: [
{
files: 'resources/css/**/*.css',
options: {
tabWidth: 2,
},
},
{
files: [
'resources/js/fields.js',
'resources/js/components.js',
'resources/js/router/routes.js',
],
options: {
printWidth: 300,
},
},
],
}
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
(self.webpackChunklaravel_nova=self.webpackChunklaravel_nova||[]).push([[179],{2897:(a,r,l)=>{function e(a,r){var l=Object.keys(a);if(Object.getOwnPropertySymbols){var e=Object.getOwnPropertySymbols(a);r&&(e=e.filter((function(r){return Object.getOwnPropertyDescriptor(a,r).enumerable}))),l.push.apply(l,e)}return l}function o(a){for(var r=1;r<arguments.length;r++){var l=null!=arguments[r]?arguments[r]:{};r%2?e(Object(l),!0).forEach((function(r){t(a,r,l[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(a,Object.getOwnPropertyDescriptors(l)):e(Object(l)).forEach((function(r){Object.defineProperty(a,r,Object.getOwnPropertyDescriptor(l,r))}))}return a}function t(a,r,l){return r in a?Object.defineProperty(a,r,{value:l,enumerable:!0,configurable:!0,writable:!0}):a[r]=l,a}const c=l(7557),v=l(9808),u=a=>{let r=a.replace("#","");3===r.length&&(r=`${r[0]}${r[0]}${r[1]}${r[1]}${r[2]}${r[2]}`);return`${parseInt(r.substring(0,2),16)}, ${parseInt(r.substring(2,4),16)}, ${parseInt(r.substring(4,6),16)}`},s=c(o(o({primary:v.sky},v),{},{gray:v.slate}),["lightBlue","warmGray","trueGray","coolGray","blueGray"]);a.exports={generateRootCSSVars:function(){return Object.fromEntries(Object.entries(s).map((([a,r])=>"string"==typeof r?[[`--colors-${a}`,r]]:Object.entries(r).map((([r,l])=>[`--colors-${a}-${r}`,u(l)])))).flat(1))},generateTailwindColors:function(){return Object.fromEntries(Object.entries(s).map((([a,r])=>"string"==typeof r?[`${a}`,r]:[a,Object.fromEntries(Object.entries(r).map((([r,l])=>[`${r}`,`rgba(var(--colors-${a}-${r}), <alpha-value>)`])))])))}}},3098:(a,r,l)=>{"use strict";var e=l(2897);it("generates Tailwind colors",(()=>{expect((0,e.generateTailwindColors)()).toEqual(expect.objectContaining({current:"currentColor",inherit:"inherit",transparent:"transparent",black:"#000",white:"#fff",primary:{100:"rgba(var(--colors-primary-100), <alpha-value>)",200:"rgba(var(--colors-primary-200), <alpha-value>)",300:"rgba(var(--colors-primary-300), <alpha-value>)",400:"rgba(var(--colors-primary-400), <alpha-value>)",50:"rgba(var(--colors-primary-50), <alpha-value>)",500:"rgba(var(--colors-primary-500), <alpha-value>)",600:"rgba(var(--colors-primary-600), <alpha-value>)",700:"rgba(var(--colors-primary-700), <alpha-value>)",800:"rgba(var(--colors-primary-800), <alpha-value>)",900:"rgba(var(--colors-primary-900), <alpha-value>)"}}))}));const o={lightBlue:{100:"rgba(var(--colors-lightBlue-100), <alpha-value>)",200:"rgba(var(--colors-lightBlue-200), <alpha-value>)",300:"rgba(var(--colors-lightBlue-300), <alpha-value>)",400:"rgba(var(--colors-lightBlue-400), <alpha-value>)",50:"rgba(var(--colors-lightBlue-50), <alpha-value>)",500:"rgba(var(--colors-lightBlue-500), <alpha-value>)",600:"rgba(var(--colors-lightBlue-600), <alpha-value>)",700:"rgba(var(--colors-lightBlue-700), <alpha-value>)",800:"rgba(var(--colors-lightBlue-800), <alpha-value>)",900:"rgba(var(--colors-lightBlue-900), <alpha-value>)"},warmGray:{100:"rgba(var(--colors-warmGray-100), <alpha-value>)",200:"rgba(var(--colors-warmGray-200), <alpha-value>)",300:"rgba(var(--colors-warmGray-300), <alpha-value>)",400:"rgba(var(--colors-warmGray-400), <alpha-value>)",50:"rgba(var(--colors-warmGray-50), <alpha-value>)",500:"rgba(var(--colors-warmGray-500), <alpha-value>)",600:"rgba(var(--colors-warmGray-600), <alpha-value>)",700:"rgba(var(--colors-warmGray-700), <alpha-value>)",800:"rgba(var(--colors-warmGray-800), <alpha-value>)",900:"rgba(var(--colors-warmGray-900), <alpha-value>)"},trueGray:{100:"rgba(var(--colors-trueGray-100), <alpha-value>)",200:"rgba(var(--colors-trueGray-200), <alpha-value>)",300:"rgba(var(--colors-trueGray-300), <alpha-value>)",400:"rgba(var(--colors-trueGray-400), <alpha-value>)",50:"rgba(var(--colors-trueGray-50), <alpha-value>)",500:"rgba(var(--colors-trueGray-500), <alpha-value>)",600:"rgba(var(--colors-trueGray-600), <alpha-value>)",700:"rgba(var(--colors-trueGray-700), <alpha-value>)",800:"rgba(var(--colors-trueGray-800), <alpha-value>)",900:"rgba(var(--colors-trueGray-900), <alpha-value>)"},coolGray:{100:"rgba(var(--colors-coolGray-100), <alpha-value>)",200:"rgba(var(--colors-coolGray-200), <alpha-value>)",300:"rgba(var(--colors-coolGray-300), <alpha-value>)",400:"rgba(var(--colors-coolGray-400), <alpha-value>)",50:"rgba(var(--colors-coolGray-50), <alpha-value>)",500:"rgba(var(--colors-coolGray-500), <alpha-value>)",600:"rgba(var(--colors-coolGray-600), <alpha-value>)",700:"rgba(var(--colors-coolGray-700), <alpha-value>)",800:"rgba(var(--colors-coolGray-800), <alpha-value>)",900:"rgba(var(--colors-coolGray-900), <alpha-value>)"},blueGray:{100:"rgba(var(--colors-blueGray-100), <alpha-value>)",200:"rgba(var(--colors-blueGray-200), <alpha-value>)",300:"rgba(var(--colors-blueGray-300), <alpha-value>)",400:"rgba(var(--colors-blueGray-400), <alpha-value>)",50:"rgba(var(--colors-blueGray-50), <alpha-value>)",500:"rgba(var(--colors-blueGray-500), <alpha-value>)",600:"rgba(var(--colors-blueGray-600), <alpha-value>)",700:"rgba(var(--colors-blueGray-700), <alpha-value>)",800:"rgba(var(--colors-blueGray-800), <alpha-value>)",900:"rgba(var(--colors-blueGray-900), <alpha-value>)"}};describe.each(Object.keys(o))("It does not generate the deprecated Tailwind colors",(a=>{it(`does not generate "${a}" colors`,(()=>{expect((0,e.generateTailwindColors)()).toEqual(expect.not.objectContaining({[a]:o[a]}))}))})),it("generates root CSS variables",(()=>{expect((0,e.generateRootCSSVars)()).toEqual(expect.objectContaining({"--colors-primary-50":"240, 249, 255","--colors-primary-100":"224, 242, 254","--colors-primary-200":"186, 230, 253","--colors-primary-300":"125, 211, 252","--colors-primary-400":"56, 189, 248","--colors-primary-500":"14, 165, 233","--colors-primary-600":"2, 132, 199","--colors-primary-700":"3, 105, 161","--colors-primary-800":"7, 89, 133","--colors-primary-900":"12, 74, 110"}))}))}},a=>{a.O(0,[660],(()=>{return r=3098,a(a.s=r);var r}));a.O()}]);
//# sourceMappingURL=main.js.map
\ No newline at end of file
{"version":3,"file":"main.js","mappings":"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","sources":["webpack://laravel/nova/./generators.js","webpack://laravel/nova/./resources/js/__tests__/util/tailwindConfig.test.js"],"sourcesContent":["const omit = require('lodash/omit')\nconst twColors = require('tailwindcss/colors')\n\nconst toRgba = hexCode => {\n let hex = hexCode.replace('#', '')\n\n if (hex.length === 3) {\n hex = `${hex[0]}${hex[0]}${hex[1]}${hex[1]}${hex[2]}${hex[2]}`\n }\n\n const r = parseInt(hex.substring(0, 2), 16)\n const g = parseInt(hex.substring(2, 4), 16)\n const b = parseInt(hex.substring(4, 6), 16)\n\n return `${r}, ${g}, ${b}`\n}\n\nconst colors = { primary: twColors.sky, ...twColors, gray: twColors.slate }\n\nconst except = omit(colors, [\n 'lightBlue',\n 'warmGray',\n 'trueGray',\n 'coolGray',\n 'blueGray',\n])\n\nfunction generateRootCSSVars() {\n return Object.fromEntries(\n Object.entries(except)\n .map(([key, value]) => {\n if (typeof value === 'string') {\n return [[`--colors-${key}`, value]]\n }\n\n return Object.entries(value).map(([shade, color]) => {\n return [`--colors-${key}-${shade}`, toRgba(color)]\n })\n })\n .flat(1)\n )\n}\n\nfunction generateTailwindColors() {\n return Object.fromEntries(\n Object.entries(except).map(([key, value]) => {\n if (typeof value === 'string') {\n return [`${key}`, value]\n }\n\n return [\n key,\n Object.fromEntries(\n Object.entries(value).map(([shade, poop]) => {\n return [\n `${shade}`,\n `rgba(var(--colors-${key}-${shade}), <alpha-value>)`,\n ]\n })\n ),\n ]\n })\n )\n}\n\nmodule.exports = {\n generateRootCSSVars,\n generateTailwindColors,\n}\n","import {\n generateRootCSSVars,\n generateTailwindColors,\n} from '../../../../generators'\n\nit('generates Tailwind colors', () => {\n expect(generateTailwindColors()).toEqual(\n expect.objectContaining({\n current: 'currentColor',\n inherit: 'inherit',\n transparent: 'transparent',\n black: '#000',\n white: '#fff',\n primary: {\n 100: 'rgba(var(--colors-primary-100), <alpha-value>)',\n 200: 'rgba(var(--colors-primary-200), <alpha-value>)',\n 300: 'rgba(var(--colors-primary-300), <alpha-value>)',\n 400: 'rgba(var(--colors-primary-400), <alpha-value>)',\n 50: 'rgba(var(--colors-primary-50), <alpha-value>)',\n 500: 'rgba(var(--colors-primary-500), <alpha-value>)',\n 600: 'rgba(var(--colors-primary-600), <alpha-value>)',\n 700: 'rgba(var(--colors-primary-700), <alpha-value>)',\n 800: 'rgba(var(--colors-primary-800), <alpha-value>)',\n 900: 'rgba(var(--colors-primary-900), <alpha-value>)',\n },\n })\n )\n})\n\nconst data = {\n lightBlue: {\n 100: 'rgba(var(--colors-lightBlue-100), <alpha-value>)',\n 200: 'rgba(var(--colors-lightBlue-200), <alpha-value>)',\n 300: 'rgba(var(--colors-lightBlue-300), <alpha-value>)',\n 400: 'rgba(var(--colors-lightBlue-400), <alpha-value>)',\n 50: 'rgba(var(--colors-lightBlue-50), <alpha-value>)',\n 500: 'rgba(var(--colors-lightBlue-500), <alpha-value>)',\n 600: 'rgba(var(--colors-lightBlue-600), <alpha-value>)',\n 700: 'rgba(var(--colors-lightBlue-700), <alpha-value>)',\n 800: 'rgba(var(--colors-lightBlue-800), <alpha-value>)',\n 900: 'rgba(var(--colors-lightBlue-900), <alpha-value>)',\n },\n\n warmGray: {\n 100: 'rgba(var(--colors-warmGray-100), <alpha-value>)',\n 200: 'rgba(var(--colors-warmGray-200), <alpha-value>)',\n 300: 'rgba(var(--colors-warmGray-300), <alpha-value>)',\n 400: 'rgba(var(--colors-warmGray-400), <alpha-value>)',\n 50: 'rgba(var(--colors-warmGray-50), <alpha-value>)',\n 500: 'rgba(var(--colors-warmGray-500), <alpha-value>)',\n 600: 'rgba(var(--colors-warmGray-600), <alpha-value>)',\n 700: 'rgba(var(--colors-warmGray-700), <alpha-value>)',\n 800: 'rgba(var(--colors-warmGray-800), <alpha-value>)',\n 900: 'rgba(var(--colors-warmGray-900), <alpha-value>)',\n },\n\n trueGray: {\n 100: 'rgba(var(--colors-trueGray-100), <alpha-value>)',\n 200: 'rgba(var(--colors-trueGray-200), <alpha-value>)',\n 300: 'rgba(var(--colors-trueGray-300), <alpha-value>)',\n 400: 'rgba(var(--colors-trueGray-400), <alpha-value>)',\n 50: 'rgba(var(--colors-trueGray-50), <alpha-value>)',\n 500: 'rgba(var(--colors-trueGray-500), <alpha-value>)',\n 600: 'rgba(var(--colors-trueGray-600), <alpha-value>)',\n 700: 'rgba(var(--colors-trueGray-700), <alpha-value>)',\n 800: 'rgba(var(--colors-trueGray-800), <alpha-value>)',\n 900: 'rgba(var(--colors-trueGray-900), <alpha-value>)',\n },\n\n coolGray: {\n 100: 'rgba(var(--colors-coolGray-100), <alpha-value>)',\n 200: 'rgba(var(--colors-coolGray-200), <alpha-value>)',\n 300: 'rgba(var(--colors-coolGray-300), <alpha-value>)',\n 400: 'rgba(var(--colors-coolGray-400), <alpha-value>)',\n 50: 'rgba(var(--colors-coolGray-50), <alpha-value>)',\n 500: 'rgba(var(--colors-coolGray-500), <alpha-value>)',\n 600: 'rgba(var(--colors-coolGray-600), <alpha-value>)',\n 700: 'rgba(var(--colors-coolGray-700), <alpha-value>)',\n 800: 'rgba(var(--colors-coolGray-800), <alpha-value>)',\n 900: 'rgba(var(--colors-coolGray-900), <alpha-value>)',\n },\n\n blueGray: {\n 100: 'rgba(var(--colors-blueGray-100), <alpha-value>)',\n 200: 'rgba(var(--colors-blueGray-200), <alpha-value>)',\n 300: 'rgba(var(--colors-blueGray-300), <alpha-value>)',\n 400: 'rgba(var(--colors-blueGray-400), <alpha-value>)',\n 50: 'rgba(var(--colors-blueGray-50), <alpha-value>)',\n 500: 'rgba(var(--colors-blueGray-500), <alpha-value>)',\n 600: 'rgba(var(--colors-blueGray-600), <alpha-value>)',\n 700: 'rgba(var(--colors-blueGray-700), <alpha-value>)',\n 800: 'rgba(var(--colors-blueGray-800), <alpha-value>)',\n 900: 'rgba(var(--colors-blueGray-900), <alpha-value>)',\n },\n}\n\ndescribe.each(Object.keys(data))(\n `It does not generate the deprecated Tailwind colors`,\n key => {\n it(`does not generate \"${key}\" colors`, () => {\n expect(generateTailwindColors()).toEqual(\n expect.not.objectContaining({ [key]: data[key] })\n )\n })\n }\n)\n\nit('generates root CSS variables', () => {\n expect(generateRootCSSVars()).toEqual(\n expect.objectContaining({\n '--colors-primary-50': '240, 249, 255',\n '--colors-primary-100': '224, 242, 254',\n '--colors-primary-200': '186, 230, 253',\n '--colors-primary-300': '125, 211, 252',\n '--colors-primary-400': '56, 189, 248',\n '--colors-primary-500': '14, 165, 233',\n '--colors-primary-600': '2, 132, 199',\n '--colors-primary-700': '3, 105, 161',\n '--colors-primary-800': '7, 89, 133',\n '--colors-primary-900': '12, 74, 110',\n })\n )\n\n // expect(generateRootCSSVars()).toEqual(\n // expect.not.objectContaining({\n // '--colors-inherit': 'inherit',\n // '--colors-current': 'current',\n // '--colors-transparent': 'transparent',\n // })\n // )\n})\n"],"names":["omit","require","twColors","toRgba","hexCode","hex","replace","length","parseInt","substring","except","primary","sky","gray","slate","module","exports","generateRootCSSVars","Object","fromEntries","entries","map","key","value","shade","color","flat","generateTailwindColors","poop","it","expect","toEqual","objectContaining","current","inherit","transparent","black","white","data","lightBlue","warmGray","trueGray","coolGray","blueGray","describe","each","keys","not"],"sourceRoot":""}
\ No newline at end of file
(()=>{"use strict";var e,r={},t={};function o(e){var n=t[e];if(void 0!==n)return n.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return r[e].call(a.exports,a,a.exports,o),a.loaded=!0,a.exports}o.m=r,o.amdO={},e=[],o.O=(r,t,n,a)=>{if(!t){var l=1/0;for(u=0;u<e.length;u++){for(var[t,n,a]=e[u],i=!0,d=0;d<t.length;d++)(!1&a||l>=a)&&Object.keys(o.O).every((e=>o.O[e](t[d])))?t.splice(d--,1):(i=!1,a<l&&(l=a));if(i){e.splice(u--,1);var s=n();void 0!==s&&(r=s)}}return r}a=a||0;for(var u=e.length;u>0&&e[u-1][2]>a;u--)e[u]=e[u-1];e[u]=[t,n,a]},o.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return o.d(r,{a:r}),r},o.d=(e,r)=>{for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e),o.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e={774:0,143:0};o.O.j=r=>0===e[r];var r=(r,t)=>{var n,a,[l,i,d]=t,s=0;if(l.some((r=>0!==e[r]))){for(n in i)o.o(i,n)&&(o.m[n]=i[n]);if(d)var u=d(o)}for(r&&r(t);s<l.length;s++)a=l[s],o.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return o.O(u)},t=self.webpackChunklaravel_nova=self.webpackChunklaravel_nova||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),o.nc=void 0})();
//# sourceMappingURL=manifest.js.map
\ No newline at end of file
{"version":3,"file":"/manifest.js","mappings":"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","sources":["webpack://laravel/nova/webpack/runtime/chunk loaded","webpack://laravel/nova/webpack/bootstrap","webpack://laravel/nova/webpack/runtime/amd options","webpack://laravel/nova/webpack/runtime/compat get default export","webpack://laravel/nova/webpack/runtime/define property getters","webpack://laravel/nova/webpack/runtime/global","webpack://laravel/nova/webpack/runtime/harmony module decorator","webpack://laravel/nova/webpack/runtime/hasOwnProperty shorthand","webpack://laravel/nova/webpack/runtime/make namespace object","webpack://laravel/nova/webpack/runtime/node module decorator","webpack://laravel/nova/webpack/runtime/jsonp chunk loading","webpack://laravel/nova/webpack/runtime/nonce"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","__webpack_require__.amdO = {};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.hmd = (module) => {\n\tmodule = Object.create(module);\n\tif (!module.children) module.children = [];\n\tObject.defineProperty(module, 'exports', {\n\t\tenumerable: true,\n\t\tset: () => {\n\t\t\tthrow new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);\n\t\t}\n\t});\n\treturn module;\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t774: 0,\n\t143: 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunklaravel_nova\"] = self[\"webpackChunklaravel_nova\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;"],"names":["deferred","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","id","loaded","__webpack_modules__","call","m","amdO","O","result","chunkIds","fn","priority","notFulfilled","Infinity","i","length","fulfilled","j","Object","keys","every","key","splice","r","n","getter","__esModule","d","a","definition","o","defineProperty","enumerable","get","g","globalThis","this","Function","e","window","hmd","create","children","set","Error","obj","prop","prototype","hasOwnProperty","Symbol","toStringTag","value","nmd","paths","installedChunks","chunkId","webpackJsonpCallback","parentChunkLoadingFunction","data","moreModules","runtime","some","chunkLoadingGlobal","self","forEach","bind","push","nc"],"sourceRoot":""}
\ No newline at end of file
{
"/app.js": "/app.js?id=fc87559387788aba14201a8d24757d03",
"/manifest.js": "/manifest.js?id=d75058ce2144a4049857d3ff9e02de1e",
"/app.css": "/app.css?id=c50093a39cdeeb8d1fb37e4b14e73bc7",
"/vendor.js": "/vendor.js?id=de86bde8857e857b607852d11627d8e4",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2?id=c8390e146be0a3c8a5498355dec892ae",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2?id=b0735c7dd6126471acbaf9d6e9f5e41a",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2?id=7c1fb232e3050e36dcc1aee61f1d0c06",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1miurt9w6c.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1miurt9w6c.woff2?id=b2b514e4f80fd3f3e129d371f2e28cd7",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1wiurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1wiurt9w6fk2a.woff2?id=a94f38b4a962cc7b2359ee28b5cdcb3f",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy10iurt9w6fk2a.woff2?id=fc9dde935ff225712c9206b6ed0d07e0",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy14iurt9w6fk2a.woff2?id=50d331c2f8b2e84fdd8216d6f4ec1a05",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1ciurt9w6fk2a.woff2?id=a2d1c8b35723f7b34531f378d62e8132",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1miurt9w6c.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1miurt9w6c.woff2?id=b56c446b866634b76dd82e1899ffd86c",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1wiurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1wiurt9w6fk2a.woff2?id=990e7481cbc4c4c2008d35b38346318f",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy10iurt9w6fk2a.woff2?id=1f992bc05a93ee90408b0ebf440d0b51",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy14iurt9w6fk2a.woff2?id=dab08b20433f28d43f9803153841475c",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1ciurt9w6fk2a.woff2?id=65053329c98ab92ebf6c839608cd17fe",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1miurt9w6c.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1miurt9w6c.woff2?id=0090542b8c9fd8177f851cac02a453ba",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1wiurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1wiurt9w6fk2a.woff2?id=bc17731e48d8257a7fb9c9fa0347afff",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy10iurt9w6fk2a.woff2?id=afd2dccf7fed86851f1b4bbc060b3219",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy14iurt9w6fk2a.woff2?id=4342ea5174b2c38d2acd750ec4e3a04c",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1ciurt9w6fk2a.woff2?id=a0b8e8877d69a1d3363974c69fb8c846",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1miurt9w6c.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1miurt9w6c.woff2?id=56afd4c6dd9b2e2fce66de8db50dee3b",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1wiurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1wiurt9w6fk2a.woff2?id=2b355d4fa6275822d88d0ecae61d13d5",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry10iurt9w6fk2a.woff2?id=790f9af8cc1a22eae1510764d2d97a60",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry14iurt9w6fk2a.woff2?id=50f7717caacfbce7fc821a59fb561704",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1ciurt9w6fk2a.woff2?id=a9c6fb7d6edcb716f5fb26b1467fb857",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1miurt9w6c.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1miurt9w6c.woff2?id=3122537501f3a50b472df6102d456738",
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1wiurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1wiurt9w6fk2a.woff2?id=2170156212773b42c2f3a17483866bd6",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5gu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5gu1ecvzl-86y.woff2?id=223847baaed2e42bbef28ad4242a807a",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5iu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5iu1ecvzl-86y.woff2?id=1b9938392cf55cad8a6239d50a5eb429",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5ju1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5ju1ecvzl-86y.woff2?id=a2adcbb3661df820a03885259bd9d73b",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5pu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5pu1ecvzl-86y.woff2?id=740ed3b71fc6b3de1b98f22bb28ef2fc",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5tu1ecvzl.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5tu1ecvzl.woff2?id=620c0613996eb352ba8643be050a9fb1",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5gu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5gu1ecvzl-86y.woff2?id=2b04f2f1a4969dd792ca01c6aed26daf",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5iu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5iu1ecvzl-86y.woff2?id=ff8878b8d47213a4e6dd762874542da5",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5ju1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5ju1ecvzl-86y.woff2?id=90801014c963d83d7b7273e6a7429796",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5pu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5pu1ecvzl-86y.woff2?id=5e9025d190b694252e60a3bb2b27f9fd",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5tu1ecvzl.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5tu1ecvzl.woff2?id=4620064ee766574b4fc4deae450b5a56",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5gu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5gu1ecvzl-86y.woff2?id=39538ce50c6102820fd569db90f08f16",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5iu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5iu1ecvzl-86y.woff2?id=95e5ba894ee9bdd99738366967b7a210",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5ju1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5ju1ecvzl-86y.woff2?id=370ac86e2b9452a68f7c1d0f845ca0a5",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5pu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5pu1ecvzl-86y.woff2?id=44a328cb53aa2d13d55740e5a0ef8634",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5tu1ecvzl.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5tu1ecvzl.woff2?id=1757d48225e24d4950d890de971a8338",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85gu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85gu1ecvzl-86y.woff2?id=bdb2c59c05e1357e831313ce1203002c",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85iu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85iu1ecvzl-86y.woff2?id=d2cd942696c5ee57e0ab1deba3a409d8",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85ju1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85ju1ecvzl-86y.woff2?id=d103ec9a30a9b6fc9c07d08e8fb614a8",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85pu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85pu1ecvzl-86y.woff2?id=5a9bc5591e6e702488168248379fd827",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85tu1ecvzl.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85tu1ecvzl.woff2?id=972d7b2c34e2b9484ba0b7506b03dd94",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5gu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5gu1ecvzl-86y.woff2?id=ea5b73033ab10c2c5c0f93124072f89b",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5iu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5iu1ecvzl-86y.woff2?id=a57039c2f64e8ebfb9d5d40ad78354cd",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5ju1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5ju1ecvzl-86y.woff2?id=39735a610c6b26246db46c0fef2f870b",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5pu1ecvzl-86y.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5pu1ecvzl-86y.woff2?id=621b01edd26068ae1e0914743d3f05cd",
"/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5tu1ecvzl.woff2": "/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5tu1ecvzl.woff2?id=1bc75a06f0b618cc2281e029d65cf148",
"/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e91kdn4qx5fhyg.woff2": "/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e91kdn4qx5fhyg.woff2?id=dae05a62a7d187a6be5ff44144cecc25",
"/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9dkdn4qx5fhyg.woff2": "/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9dkdn4qx5fhyg.woff2?id=6b68efcb41151a65c0f011d054544c56",
"/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9lkdn4qx5e.woff2": "/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9lkdn4qx5e.woff2?id=4fb4a9b4fc64e60e4e9391648d7b258e",
"/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9rkdn4qx5fhyg.woff2": "/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9rkdn4qx5fhyg.woff2?id=219057791660520eb6915051a067097d",
"/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9zkdn4qx5fhyg.woff2": "/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9zkdn4qx5fhyg.woff2?id=c02a422dea36200a8585c2f25b911703",
"/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce5i9tacvwob5a.woff2": "/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce5i9tacvwob5a.woff2?id=11a3b4a33644068847c43f97ef744716",
"/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce9i9tacvwo.woff2": "/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce9i9tacvwo.woff2?id=aa087af1a533b05df603209634f75311",
"/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccewi9tacvwob5a.woff2": "/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccewi9tacvwob5a.woff2?id=cb718c959bd2fb8ab5691f4647ffd03e",
"/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cceyi9tacvwob5a.woff2": "/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cceyi9tacvwob5a.woff2?id=3bfa538014da579f7572b87bdfcc04f7",
"/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccezi9tacvwob5a.woff2": "/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccezi9tacvwob5a.woff2?id=bdfdc9c524418474c6a0d0300a02124b"
}
This diff is collapsed.
/* NProgress, (c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress
* @license MIT */
/*!
autosize 4.0.4
license: MIT
http://www.jacklmoore.com/autosize
*/
/*!
* @overview es6-promise - a tiny implementation of Promises/A+.
* @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)
* @license Licensed under MIT license
* See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE
* @version v4.2.8+1e68dce6
*/
/*!
* JavaScript Cookie v2.2.1
* https://github.com/js-cookie/js-cookie
*
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
* Released under the MIT license
*/
/*!
* vuex v4.0.2
* (c) 2021 Evan You
* @license MIT
*/
/*! Hammer.JS - v2.0.7 - 2016-04-22
* http://hammerjs.github.io/
*
* Copyright (c) 2016 Jorik Tangelder;
* Licensed under the MIT license */
/**
* @license
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
This diff is collapsed.
## Speech Perception Task
=======================
**Last updated in PsychoPy version 2021.2.3**
*To Do:*
- think of new joke and make images for breaks for session 2
- make an instructions video for the threshold part of the task
- pilot task for task durations and data output
- measure volume of babble and movie with a decibel meter to get an approximate idea of what volumes correspond to in dB
Run link: https://run.pavlovia.org/lpxrh6/code_crackers/
Adapted runLink with query strings:
- Run link session 1: https://run.pavlovia.org/lpxrh6/code_crackers/?session=1
- Run link session 2: https://run.pavlovia.org/lpxrh6/code_crackers/?session=2&baseline_corr=2 (baseline_corr should correspond to the average accuracy in session 1 expressed as a rounded integer between 1 and 4)
If using this task please cite: Turoman, N., Hirst, R.J, & Stacey, J. E. (2021, October 10). Do Masks Effect The Perception of Speech In Noise? Retrieved from osf.io/56x9r
Task Description
-----------------
This is an assessment of speech perception. The task is divided into two parts, baseline assessment and threshold assessment.
*Baseline assessment*
----------------------
Sentences are presented in the absence of any noise. The purpose of this task is to obtain average accuracy for the participant so that this is then used as the cut-off for accuracy in the speech-in-noise task. For example, if a participant scored an average of 2 out of 4 words correct at baseline, they would need to obtain a score of 2 or higher on each trial in the threshold task for that to be classes as "correct".
On each trial participants are presented with a varied ITI in which a fixation is presented. In this time, the movie is loaded, the duration of the ITI will vary depending on loading time, but is saved to file (exact range will be reported on write-up). Following this, the participant is presented with a movie of a speaker reading one of 30 keyword sentences, each sentence lasts around 4 seconds and contains 4 keywords. The speaker will be presented in one of 2 conditions, wearing a surgical mask or not wearing a mask, thus, there are 60 sentences in total. Stimuli are presented in a pseudo-random order in which half of the sentences are presented first for the masked condition and half for the no mask condition - eliminating an influence of prior exposure on either condition. Following sentence presentation the participant is presented with an array of 8 images, 4 keyword images and 4 flanker images. The 4 flanking images for each trial were first randomly selected and then screened by the author to eliminate any instances where a flanking image held close similarity to a keyword image.
*Threshold assessment*
------------------------
An interleaved staircase procedure in which sentences are presented in multi-talker babble. On each trial the volume of the sentence (the signal) will decrease or increase in a one-up-one-down procedure; following correct or incorrect responses respectively. Each staircase will end either when the maximum number of trials has been reached (30 per sentence) or `maxReversals` has been reached (currently `maxReversals = 7`). On each trail a correct/incorrect response is classified as scoring equal or greater than baseline performance.
To control parameters of the staircase use `update_stair` routine `stairUpdate` component:
```
startVol = 0.2 # starting volume of the signal
stepSize = 0.05 # stepsize of the signal
# How many reversals until we consider a staircase complete
maxReversals = 7
```
Data output
------------------------
Relevant to both tasks:
- `sentence`: the sentence presented
- `mask`: video with mask or no mask
- `keyword_0` - `keyword_3`: the keywords in the sentence
- `flankword_0` - `flankword_3`: the flanking images presented with that sentence image set
- `clicked_images`: name of the images selected.
- `corrCount`: how many images selected were correct.
- `incorrCount`: how many images selected were incorrect.
- `fixation_time`: how long the fixation was presented for (how long it took the movie to load)
- `mouse.time`: the time of each mouse click relative to the routine start time.
- `mouse.clicked_name`: the name of the components clicked (corresponding to mouse times in `mouse.time`)
Relevant to baseline task:
- `running_average`: the running average of nCorrect.
- `baseline_corr`: `running_average` but as an integer value rounded to 0 decimal places **
- `custom_url`: The url for session 2 to use for this participant
Note: the final value should be used in the "baseline_corr" parameter when running the second session**
Specific to thresholding task:
- `staircase1_threshold`: the threshold obtained for this staircase either by averaging the last 7 reversals or averaging the reversals that did occur.
- `staircase1_finalReversals`: the number of reversals that occurred in this stair (how many were used to create the threshold)
-`staircase1_name` - name of current staircase (mask or no mask)
- `staircase1_volume` - volume of the signal on the current trial (arbitrary PsychoPy unit 0 - 1)
- `staircase1_SNR` - volume of signal / volume of noise both values in PsychoPy units 0 - 1
- `staircase1_reversals` - number of reversals so far in this staircase
- `staircase1_direction` - direction of current vol (increasing - up or decreasing - down)
- `staircase1_complete` - if the current staircase is complete
Stimuli
------------------------
- **Sentence stimuli:** All sentences were sampled from Brown et al. (2021). Videos were recorded with a Huawai P30lite camera phone and audio recorded with a Blue Yeti mic. Audio file amplitudes were normalized using Praat version 6.1.50 (Boersma, Paul and Weekink (2021) (using Katherine Crosswhite's stimulus intensity script - see resources). Audio and video streams were synced using Praat to detect an auditory event in both recordings (a clap occurring ~1 second prior to voice onset) then video audio was replaced with higher quality mic audio using ffmpeg (Tomar, 2006). All scripts used to process auditory and video stimuli can be found here https://github.com/RebeccaHirst/AVsync. Because the current study implemented picture matching response rather than vocal responses at used by Brown et al. (2021), a subset of sentences were chosen for which keyword images were created, where the keywords were commonly used in English rather than American English (e.g. sentence using the word “garbage” was excluded) and for which the keywords were considered non-ambiguous enough for children.
- **Babble stimuli** Five samples of two-speaker babble were created. Babble speakers were two female speakers (selected to closely match the primary speaker). The babble sentences did not contain any of the keywords. (babble script in subfolder Stimuli/babble/babble_script.doc). On each trial, the babble sample was pseaudorandomly selected, the babble paired with each stimulus was the same for all participants and each babble sample was selected to occur the same number of times within the mask and no mask conditions (see "babble" column in "threshold_conditions.csv")
- **Keyword image stimuli** Images were custom drawn for each keyword by the author, Nora Turoman. Following each trial 8 images were presented, 4 images corresponding to the 4 keywords in the sentence and 4 “flanker” images. Flanker images were selected and reviewed by the authors on the basis of resemblance to keywords (i.e. if the sentence contained the word “cheap” it was ensured a picture for the keyword “money” was not presented, since these are closely related). The same image sets were used across mask conditions and across participants.
References and Resources
-----------
Brown, V. A., Van Engen, K. J., & Peelle, J. E. (2021, March 12). Face mask type affects audiovisual speech intelligibility and subjective listening effort in young and older adults. https://doi.org/10.31234/osf.io/7waj3
Crosswhite, K. (2009) Adjust-Intensity. Computer Program. *Retrieved from: Praat Script Resources* http://phonetics.linguistics.ucla.edu/facilities/acoustic/praat.html
Hirst, R.J. (2021) Audio-Visual Sync. Computer Program. *Retrieved from:* https://github.com/RebeccaHirst/AVsync
Tomar, S. (2006). Converting video formats with FFmpeg. Linux Journal, 2006(146), 10.
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'codemirror/lib/codemirror.css';
@import 'codemirror/theme/3024-day.css';
@import 'codemirror/theme/3024-night.css';
@import 'codemirror/theme/abcdef.css';
@import 'codemirror/theme/ambiance-mobile.css';
@import 'codemirror/theme/ambiance.css';
@import 'codemirror/theme/base16-dark.css';
@import 'codemirror/theme/base16-light.css';
@import 'codemirror/theme/bespin.css';
@import 'codemirror/theme/blackboard.css';
@import 'codemirror/theme/cobalt.css';
@import 'codemirror/theme/colorforth.css';
@import 'codemirror/theme/darcula.css';
@import 'codemirror/theme/dracula.css';
@import 'codemirror/theme/duotone-dark.css';
@import 'codemirror/theme/duotone-light.css';
@import 'codemirror/theme/eclipse.css';
@import 'codemirror/theme/elegant.css';
@import 'codemirror/theme/erlang-dark.css';
@import 'codemirror/theme/gruvbox-dark.css';
@import 'codemirror/theme/hopscotch.css';
@import 'codemirror/theme/icecoder.css';
@import 'codemirror/theme/idea.css';
@import 'codemirror/theme/isotope.css';
@import 'codemirror/theme/lesser-dark.css';
@import 'codemirror/theme/liquibyte.css';
@import 'codemirror/theme/lucario.css';
@import 'codemirror/theme/material.css';
@import 'codemirror/theme/mbo.css';
@import 'codemirror/theme/mdn-like.css';
@import 'codemirror/theme/midnight.css';
@import 'codemirror/theme/monokai.css';
@import 'codemirror/theme/neat.css';
@import 'codemirror/theme/neo.css';
@import 'codemirror/theme/night.css';
@import 'codemirror/theme/oceanic-next.css';
@import 'codemirror/theme/panda-syntax.css';
@import 'codemirror/theme/paraiso-dark.css';
@import 'codemirror/theme/paraiso-light.css';
@import 'codemirror/theme/pastel-on-dark.css';
@import 'codemirror/theme/railscasts.css';
@import 'codemirror/theme/rubyblue.css';
@import 'codemirror/theme/seti.css';
@import 'codemirror/theme/shadowfox.css';
@import 'codemirror/theme/solarized.css';
@import 'codemirror/theme/ssms.css';
@import 'codemirror/theme/the-matrix.css';
@import 'codemirror/theme/tomorrow-night-bright.css';
@import 'codemirror/theme/tomorrow-night-eighties.css';
@import 'codemirror/theme/ttcn.css';
@import 'codemirror/theme/twilight.css';
@import 'codemirror/theme/vibrant-ink.css';
@import 'codemirror/theme/xq-dark.css';
@import 'codemirror/theme/xq-light.css';
@import 'codemirror/theme/yeti.css';
@import 'codemirror/theme/zenburn.css';
@import 'nova';
@import 'fonts';
@import 'tailwindcss/utilities';
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 200;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry14iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 200;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1ciurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 200;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1wiurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 200;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry10iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 200;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1miurt9w6c.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 300;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy14iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 300;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1ciurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 300;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1wiurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 300;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy10iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 300;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1miurt9w6c.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9rkdn4qx5fhyg.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e91kdn4qx5fhyg.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9zkdn4qx5fhyg.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9dkdn4qx5fhyg.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9lkdn4qx5e.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 600;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy14iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 600;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1ciurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 600;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1wiurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 600;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy10iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 600;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1miurt9w6c.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 800;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy14iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 800;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1ciurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 800;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1wiurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 800;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy10iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 800;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1miurt9w6c.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 900;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 900;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 900;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1wiurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 900;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: italic;
font-weight: 900;
src: url(./fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1miurt9w6c.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 200;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5gu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 200;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5pu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 200;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5iu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 200;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5ju1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 200;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5tu1ecvzl.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 300;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5gu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 300;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5pu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 300;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5iu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 300;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5ju1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 300;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5tu1ecvzl.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccewi9tacvwob5a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce5i9tacvwob5a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0qmimslybiv1o4x1m8cceyi9tacvwob5a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccezi9tacvwob5a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
src: url(./fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce9i9tacvwo.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 600;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85gu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 600;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85pu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 600;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85iu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 600;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85ju1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 600;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85tu1ecvzl.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 800;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5gu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 800;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5pu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 800;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5iu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 800;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5ju1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 800;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5tu1ecvzl.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 900;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5gu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 900;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5pu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 900;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5iu1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 900;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5ju1ecvzl-86y.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 900;
src: url(./fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5tu1ecvzl.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
This diff is collapsed.
File added
File added
File added
File added
File added
File added
File added
File added
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment