From c19a6fc94e818bca750e44624c03fb3dff10cebd Mon Sep 17 00:00:00 2001 From: lujanfernaud Date: Thu, 19 Jul 2018 11:43:48 +0100 Subject: [PATCH] Update Bootstrap to 4.1.1 --- Gemfile | 4 +- Gemfile.lock | 10 +- .../vendor/_bootstrap-variables.scss | 1286 +++++++++-------- ...fest-3166fa9c4d5aaa1767b17f49852da78c.json | 2 +- ...9492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js | 18 + ...2fe4cdfb8af3417a8bb5d7dddefda2bf983e.js.gz | Bin 0 -> 157325 bytes ...79ccdb521bc66caded8f563feff1b8e165da58.css | 6 + ...cdb521bc66caded8f563feff1b8e165da58.css.gz | Bin 0 -> 28101 bytes 8 files changed, 735 insertions(+), 591 deletions(-) create mode 100644 public/assets/application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js create mode 100644 public/assets/application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js.gz create mode 100644 public/assets/application-b0aa17fc4e04b249f0e156486479ccdb521bc66caded8f563feff1b8e165da58.css create mode 100644 public/assets/application-b0aa17fc4e04b249f0e156486479ccdb521bc66caded8f563feff1b8e165da58.css.gz diff --git a/Gemfile b/Gemfile index c61707a5..d4bbe7f2 100644 --- a/Gemfile +++ b/Gemfile @@ -40,8 +40,8 @@ gem 'rounding', '~> 1.0', '>= 1.0.1' gem 'storext', '~> 2.2', '>= 2.2.2' # Bootstrap. -gem 'bootstrap', '~> 4.0.0.beta2.1' -gem 'jquery-rails', '4.3.1' +gem 'bootstrap', '~> 4.1', '>= 4.1.1' +gem 'jquery-rails', '~> 4.3', '>= 4.3.3' # Pagination and breadcrumbs. gem 'bootstrap-will_paginate', '1.0.0' diff --git a/Gemfile.lock b/Gemfile.lock index 9bd2bef6..9f17b042 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -55,7 +55,7 @@ GEM ansi (1.5.0) arel (8.0.0) ast (2.4.0) - autoprefixer-rails (8.4.1) + autoprefixer-rails (9.0.0) execjs awesome_print (1.8.0) aws_cf_signer (0.1.3) @@ -71,7 +71,7 @@ GEM bindex (0.5.0) binding_of_caller (0.8.0) debug_inspector (>= 0.0.1) - bootstrap (4.0.0) + bootstrap (4.1.1) autoprefixer-rails (>= 6.0.3) popper_js (>= 1.12.9, < 2) sass (>= 3.5.2) @@ -198,7 +198,7 @@ GEM jbuilder (2.7.0) activesupport (>= 4.2.0) multi_json (>= 1.2) - jquery-rails (4.3.1) + jquery-rails (4.3.3) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) thor (>= 0.14, < 2.0) @@ -442,7 +442,7 @@ DEPENDENCIES bcrypt (~> 3.1.7) better_errors (~> 2.4) binding_of_caller (~> 0.8.0) - bootstrap (~> 4.0.0.beta2.1) + bootstrap (~> 4.1, >= 4.1.1) bootstrap-will_paginate (= 1.0.0) breadcrumbs_on_rails (~> 3.0, >= 3.0.1) bullet (~> 5.7, >= 5.7.5) @@ -465,7 +465,7 @@ DEPENDENCIES guard-rubycritic (~> 2.9, >= 2.9.3) inline_svg (~> 1.3, >= 1.3.1) jbuilder (~> 2.5) - jquery-rails (= 4.3.1) + jquery-rails (~> 4.3, >= 4.3.3) listen (>= 3.0.5, < 3.2) local_time (~> 2.0, >= 2.0.1) mini_magick (~> 4.8) diff --git a/app/assets/stylesheets/vendor/_bootstrap-variables.scss b/app/assets/stylesheets/vendor/_bootstrap-variables.scss index f3d74b4e..1d388028 100644 --- a/app/assets/stylesheets/vendor/_bootstrap-variables.scss +++ b/app/assets/stylesheets/vendor/_bootstrap-variables.scss @@ -1,143 +1,169 @@ -// Override Bootstrap variables here (defaults from bootstrap v4.0.0-beta): +// Variables +// +// Variables should follow the `$component-state-property-size` formula for +// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs. // // Color system // -$white: #fff; -$gray-100: #f8f9fa; -$gray-200: #e9ecef; -$gray-300: #dee2e6; -$gray-400: #ced4da; -$gray-500: #adb5bd; -$gray-600: #868e96; -$gray-700: #495057; -$gray-800: #343a40; -$gray-900: #212529; -$black: #000; - -$grays: (); +// stylelint-disable +$white: #fff !default; +$gray-100: #f8f9fa !default; +$gray-200: #e9ecef !default; +$gray-300: #dee2e6 !default; +$gray-400: #ced4da !default; +$gray-500: #adb5bd !default; +$gray-600: #6c757d !default; +$gray-700: #495057 !default; +$gray-800: #343a40 !default; +$gray-900: #212529 !default; +$black: #000 !default; + +$grays: () !default; $grays: map-merge(( - 100: $gray-100, - 200: $gray-200, - 300: $gray-300, - 400: $gray-400, - 500: $gray-500, - 600: $gray-600, - 700: $gray-700, - 800: $gray-800, - 900: $gray-900 + "100": $gray-100, + "200": $gray-200, + "300": $gray-300, + "400": $gray-400, + "500": $gray-500, + "600": $gray-600, + "700": $gray-700, + "800": $gray-800, + "900": $gray-900 ), $grays); -$blue: #007bff; -$indigo: #6610f2; -$purple: #6f42c1; -$pink: #e83e8c; -$red: #dc3545; -$orange: #fd7e14; -$yellow: #ffc107; -$green: #28a745; -$teal: #20c997; -$cyan: #17a2b8; - -$colors: (); +$blue: #007bff !default; +$indigo: #6610f2 !default; +$purple: #6f42c1 !default; +$pink: #e83e8c !default; +$red: #dc3545 !default; +$orange: #fd7e14 !default; +$yellow: #ffc107 !default; +$green: #28a745 !default; +$teal: #20c997 !default; +$cyan: #17a2b8 !default; + +$colors: () !default; $colors: map-merge(( - blue: $blue, - indigo: $indigo, - purple: $purple, - pink: $pink, - red: $red, - orange: $orange, - yellow: $yellow, - green: $green, - teal: $teal, - cyan: $cyan, - white: $white, - gray: $gray-600, - gray-dark: $gray-800 + "blue": $blue, + "indigo": $indigo, + "purple": $purple, + "pink": $pink, + "red": $red, + "orange": $orange, + "yellow": $yellow, + "green": $green, + "teal": $teal, + "cyan": $cyan, + "white": $white, + "gray": $gray-600, + "gray-dark": $gray-800 ), $colors); -$theme-colors: (); +$primary: $blue !default; +$secondary: $gray-600 !default; +$success: $green !default; +$info: $cyan !default; +$warning: $yellow !default; +$danger: $red !default; +$light: $gray-100 !default; +$dark: $gray-800 !default; + +$theme-colors: () !default; $theme-colors: map-merge(( - primary: $indigo, - secondary: $gray-600, - success: $green, - info: $cyan, - warning: $yellow, - danger: $red, - light: $gray-100, - dark: $gray-800 + "primary": $indigo, + "secondary": $secondary, + "success": $success, + "info": $info, + "warning": $warning, + "danger": $danger, + "light": $light, + "dark": $dark ), $theme-colors); - -// Set a specific jump point for requesting color jumps -// $theme-color-interval: 8%; - - -// Options -// -// Quickly modify global styling by enabling or disabling optional features. - -// $enable-rounded: true; -// $enable-shadows: false; -// $enable-gradients: false; -// $enable-transitions: true; -// $enable-hover-media-query: false; -// $enable-grid-classes: true; -// $enable-print-styles: true; - - -// Spacing -// -// Control the default styling of most Bootstrap elements by modifying these -// variables. Mostly focused on spacing. -// You can add more entries to the $spacers map, should you need more variation. - -// $spacer: 1rem; -// $spacers: ( +// stylelint-enable + +// // Set a specific jump point for requesting color jumps +// $theme-color-interval: 8% !default; + +// // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255. +// $yiq-contrasted-threshold: 150 !default; + +// // Customize the light and dark text colors for use in our YIQ color contrast function. +// $yiq-text-dark: $gray-900 !default; +// $yiq-text-light: $white !default; + +// // Options +// // +// // Quickly modify global styling by enabling or disabling optional features. + +// $enable-caret: true !default; +// $enable-rounded: true !default; +// $enable-shadows: false !default; +// $enable-gradients: false !default; +// $enable-transitions: true !default; +// $enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS +// $enable-grid-classes: true !default; +// $enable-print-styles: true !default; + + +// // Spacing +// // +// // Control the default styling of most Bootstrap elements by modifying these +// // variables. Mostly focused on spacing. +// // You can add more entries to the $spacers map, should you need more variation. + +// // stylelint-disable +// $spacer: 1rem !default; +// $spacers: () !default; +// $spacers: map-merge(( // 0: 0, // 1: ($spacer * .25), // 2: ($spacer * .5), // 3: $spacer, // 4: ($spacer * 1.5), // 5: ($spacer * 3) -// ); +// ), $spacers); -// This variable affects the `.h-*` and `.w-*` classes. -// $sizes: ( +// // This variable affects the `.h-*` and `.w-*` classes. +// $sizes: () !default; +// $sizes: map-merge(( // 25: 25%, // 50: 50%, // 75: 75%, -// 100: 100% -// ); +// 100: 100%, +// auto: auto +// ), $sizes); +// // stylelint-enable -// Body -// -// Settings for the `` element. +// // Body +// // +// // Settings for the `` element. -// $body-bg: $white; -// $body-color: $gray-900; +// $body-bg: $white !default; +// $body-color: $gray-900 !default; -// Links -// -// Style anchor elements. +// // Links +// // +// // Style anchor elements. -// $link-color: theme-color("primary"); -// $link-decoration: none; -// $link-hover-color: darken($link-color, 15%); -// $link-hover-decoration: underline; +// $link-color: theme-color("primary") !default; +// $link-decoration: none !default; +// $link-hover-color: darken($link-color, 15%) !default; +// $link-hover-decoration: underline !default; -// Paragraphs -// -// Style p element. +// // Paragraphs +// // +// // Style p element. -// $paragraph-margin-bottom: 1rem; +// $paragraph-margin-bottom: 1rem !default; -// Grid breakpoints -// -// Define the minimum dimensions at which your layout will change, -// adapting to different screen sizes, for use in media queries. +// // Grid breakpoints +// // +// // Define the minimum dimensions at which your layout will change, +// // adapting to different screen sizes, for use in media queries. // $grid-breakpoints: ( // xs: 0, @@ -145,665 +171,759 @@ $theme-colors: map-merge(( // md: 768px, // lg: 992px, // xl: 1200px -// ); +// ) !default; + // @include _assert-ascending($grid-breakpoints, "$grid-breakpoints"); // @include _assert-starts-at-zero($grid-breakpoints); -// Grid containers -// -// Define the maximum width of `.container` for different screen sizes. +// // Grid containers +// // +// // Define the maximum width of `.container` for different screen sizes. // $container-max-widths: ( // sm: 540px, // md: 720px, // lg: 960px, // xl: 1140px -// ); +// ) !default; + // @include _assert-ascending($container-max-widths, "$container-max-widths"); -// Grid columns -// -// Set the number of columns and specify the width of the gutters. +// // Grid columns +// // +// // Set the number of columns and specify the width of the gutters. -// $grid-columns: 12; -// $grid-gutter-width: 30px; +// $grid-columns: 12 !default; +// $grid-gutter-width: 30px !default; -// Components -// -// Define common padding and border radius sizes and more. +// // Components +// // +// // Define common padding and border radius sizes and more. -// $line-height-lg: 1.5; -// $line-height-sm: 1.5; +// $line-height-lg: 1.5 !default; +// $line-height-sm: 1.5 !default; -// $border-width: 1px; -// $border-color: $gray-200; +// $border-width: 1px !default; +// $border-color: $gray-300 !default; -// $border-radius: .25rem; -// $border-radius-lg: .3rem; -// $border-radius-sm: .2rem; +// $border-radius: .25rem !default; +// $border-radius-lg: .3rem !default; +// $border-radius-sm: .2rem !default; -// $component-active-color: $white; -// $component-active-bg: theme-color("primary"); +// $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default; +// $box-shadow: 0 .5rem 1rem rgba($black, .15) !default; +// $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default; -// $caret-width: .3em; +// $component-active-color: $white !default; +// $component-active-bg: theme-color("primary") !default; -// $transition-base: all .2s ease-in-out; -// $transition-fade: opacity .15s linear; -// $transition-collapse: height .35s ease; +// $caret-width: .3em !default; +// $transition-base: all .2s ease-in-out !default; +// $transition-fade: opacity .15s linear !default; +// $transition-collapse: height .35s ease !default; -// Fonts -// -// Font, line-height, and color for body text, headings, and more. -// $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; -// $font-family-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -// $font-family-base: $font-family-sans-serif; +// // Fonts +// // +// // Font, line-height, and color for body text, headings, and more. -// $font-size-base: 1rem; // Assumes the browser default, typically `16px` -// $font-size-lg: 1.25rem; -// $font-size-sm: .875rem; +// // stylelint-disable value-keyword-case +// $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default; +// $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default; +// $font-family-base: $font-family-sans-serif !default; +// // stylelint-enable value-keyword-case -// $font-weight-light: 300; -// $font-weight-normal: normal; -// $font-weight-bold: bold; +// $font-size-base: 1rem !default; // Assumes the browser default, typically `16px` +// $font-size-lg: ($font-size-base * 1.25) !default; +// $font-size-sm: ($font-size-base * .875) !default; -// $font-weight-base: $font-weight-normal; -// $line-height-base: 1.5; +// $font-weight-light: 300 !default; +// $font-weight-normal: 400 !default; +// $font-weight-bold: 700 !default; -// $h1-font-size: 2.5rem; -// $h2-font-size: 2rem; -// $h3-font-size: 1.75rem; -// $h4-font-size: 1.5rem; -// $h5-font-size: 1.25rem; -// $h6-font-size: 1rem; +// $font-weight-base: $font-weight-normal !default; +// $line-height-base: 1.5 !default; -// $headings-margin-bottom: ($spacer / 2); -// $headings-font-family: inherit; -// $headings-font-weight: 500; -// $headings-line-height: 1.1; -// $headings-color: inherit; +// $h1-font-size: $font-size-base * 2.5 !default; +// $h2-font-size: $font-size-base * 2 !default; +// $h3-font-size: $font-size-base * 1.75 !default; +// $h4-font-size: $font-size-base * 1.5 !default; +// $h5-font-size: $font-size-base * 1.25 !default; +// $h6-font-size: $font-size-base !default; -// $display1-size: 6rem; -// $display2-size: 5.5rem; -// $display3-size: 4.5rem; -// $display4-size: 3.5rem; +// $headings-margin-bottom: ($spacer / 2) !default; +// $headings-font-family: inherit !default; +// $headings-font-weight: 500 !default; +// $headings-line-height: 1.2 !default; +// $headings-color: inherit !default; -// $display1-weight: 300; -// $display2-weight: 300; -// $display3-weight: 300; -// $display4-weight: 300; -// $display-line-height: $headings-line-height; +// $display1-size: 6rem !default; +// $display2-size: 5.5rem !default; +// $display3-size: 4.5rem !default; +// $display4-size: 3.5rem !default; -// $lead-font-size: 1.25rem; -// $lead-font-weight: 300; +// $display1-weight: 300 !default; +// $display2-weight: 300 !default; +// $display3-weight: 300 !default; +// $display4-weight: 300 !default; +// $display-line-height: $headings-line-height !default; -// $small-font-size: 80%; +// $lead-font-size: ($font-size-base * 1.25) !default; +// $lead-font-weight: 300 !default; -// $text-muted: $gray-600; +// $small-font-size: 80% !default; -// $blockquote-small-color: $gray-600; -// $blockquote-font-size: ($font-size-base * 1.25); +// $text-muted: $gray-600 !default; -// $hr-border-color: rgba($black,.1); -// $hr-border-width: $border-width; +// $blockquote-small-color: $gray-600 !default; +// $blockquote-font-size: ($font-size-base * 1.25) !default; -// $mark-padding: .2em; +// $hr-border-color: rgba($black, .1) !default; +// $hr-border-width: $border-width !default; -// $dt-font-weight: $font-weight-bold; +// $mark-padding: .2em !default; -// $kbd-box-shadow: inset 0 -.1rem 0 rgba($black,.25); -// $nested-kbd-font-weight: $font-weight-bold; +// $dt-font-weight: $font-weight-bold !default; -// $list-inline-padding: 5px; +// $kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default; +// $nested-kbd-font-weight: $font-weight-bold !default; -// $mark-bg: #fcf8e3; +// $list-inline-padding: .5rem !default; +// $mark-bg: #fcf8e3 !default; -// Tables -// -// Customizes the `.table` component with basic values, each used across all table variations. +// $hr-margin-y: $spacer !default; -// $table-cell-padding: .75rem; -// $table-cell-padding-sm: .3rem; -// $table-bg: transparent; -// $table-accent-bg: rgba($black,.05); -// $table-hover-bg: rgba($black,.075); -// $table-active-bg: $table-hover-bg; +// // Tables +// // +// // Customizes the `.table` component with basic values, each used across all table variations. -// $table-border-width: $border-width; -// $table-border-color: $gray-200; +// $table-cell-padding: .75rem !default; +// $table-cell-padding-sm: .3rem !default; -// $table-head-bg: $gray-200; -// $table-head-color: $gray-700; +// $table-bg: transparent !default; +// $table-accent-bg: rgba($black, .05) !default; +// $table-hover-bg: rgba($black, .075) !default; +// $table-active-bg: $table-hover-bg !default; -// $table-dark-bg: $gray-900; -// $table-dark-accent-bg: rgba($white, .05); -// $table-dark-hover-bg: rgba($white, .075); -// $table-dark-border-color: lighten($gray-900, 7.5%); -// $table-dark-color: $body-bg; +// $table-border-width: $border-width !default; +// $table-border-color: $gray-300 !default; +// $table-head-bg: $gray-200 !default; +// $table-head-color: $gray-700 !default; -// Buttons -// -// For each of Bootstrap's buttons, define text, background and border color. +// $table-dark-bg: $gray-900 !default; +// $table-dark-accent-bg: rgba($white, .05) !default; +// $table-dark-hover-bg: rgba($white, .075) !default; +// $table-dark-border-color: lighten($gray-900, 7.5%) !default; +// $table-dark-color: $body-bg !default; + +// $table-striped-order: odd !default; + +// $table-caption-color: $text-muted !default; + +// // Buttons + Forms +// // +// // Shared variables that are reassigned to `$input-` and `$btn-` specific variables. + +// $input-btn-padding-y: .375rem !default; +// $input-btn-padding-x: .75rem !default; +// $input-btn-line-height: $line-height-base !default; + +// $input-btn-focus-width: .2rem !default; +// $input-btn-focus-color: rgba($component-active-bg, .25) !default; +// $input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default; -// $input-btn-padding-y: .5rem; -// $input-btn-padding-x: .75rem; -// $input-btn-line-height: 1.25; +// $input-btn-padding-y-sm: .25rem !default; +// $input-btn-padding-x-sm: .5rem !default; +// $input-btn-line-height-sm: $line-height-sm !default; -// $input-btn-padding-y-sm: .25rem; -// $input-btn-padding-x-sm: .5rem; -// $input-btn-line-height-sm: 1.5; +// $input-btn-padding-y-lg: .5rem !default; +// $input-btn-padding-x-lg: 1rem !default; +// $input-btn-line-height-lg: $line-height-lg !default; -// $input-btn-padding-y-lg: .5rem; -// $input-btn-padding-x-lg: 1rem; -// $input-btn-line-height-lg: 1.5; +// $input-btn-border-width: $border-width !default; -// $btn-font-weight: $font-weight-normal; -// $btn-box-shadow: inset 0 1px 0 rgba($white,.15), 0 1px 1px rgba($black,.075); -// $btn-focus-box-shadow: 0 0 0 3px rgba(theme-color("primary"), .25); -// $btn-active-box-shadow: inset 0 3px 5px rgba($black,.125); -// $btn-link-disabled-color: $gray-600; +// // Buttons +// // +// // For each of Bootstrap's buttons, define text, background, and border color. -// $btn-block-spacing-y: .5rem; +// $btn-padding-y: $input-btn-padding-y !default; +// $btn-padding-x: $input-btn-padding-x !default; +// $btn-line-height: $input-btn-line-height !default; -// Allows for customizing button radius independently from global border radius -// $btn-border-radius: $border-radius; -// $btn-border-radius-lg: $border-radius-lg; -// $btn-border-radius-sm: $border-radius-sm; +// $btn-padding-y-sm: $input-btn-padding-y-sm !default; +// $btn-padding-x-sm: $input-btn-padding-x-sm !default; +// $btn-line-height-sm: $input-btn-line-height-sm !default; -// $btn-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; +// $btn-padding-y-lg: $input-btn-padding-y-lg !default; +// $btn-padding-x-lg: $input-btn-padding-x-lg !default; +// $btn-line-height-lg: $input-btn-line-height-lg !default; +// $btn-border-width: $input-btn-border-width !default; -// Forms +// $btn-font-weight: $font-weight-normal !default; +// $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default; +// $btn-focus-width: $input-btn-focus-width !default; +// $btn-focus-box-shadow: $input-btn-focus-box-shadow !default; +// $btn-disabled-opacity: .65 !default; +// $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default; -// $input-bg: $white; -// $input-disabled-bg: $gray-200; +// $btn-link-disabled-color: $gray-600 !default; -// $input-color: $gray-700; -// $input-border-color: rgba($black,.15); -// $input-btn-border-width: $border-width; // For form controls and buttons -// $input-box-shadow: inset 0 1px 1px rgba($black,.075); +// $btn-block-spacing-y: .5rem !default; -// $input-border-radius: $border-radius; -// $input-border-radius-lg: $border-radius-lg; -// $input-border-radius-sm: $border-radius-sm; +// // Allows for customizing button radius independently from global border radius +// $btn-border-radius: $border-radius !default; +// $btn-border-radius-lg: $border-radius-lg !default; +// $btn-border-radius-sm: $border-radius-sm !default; -// $input-focus-bg: $input-bg; -// $input-focus-border-color: lighten(theme-color("primary"), 25%); -// $input-focus-box-shadow: $input-box-shadow, $btn-focus-box-shadow; -// $input-focus-color: $input-color; +// $btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default; -// $input-placeholder-color: $gray-600; -// $input-height-border: $input-btn-border-width * 2; +// // Forms -// $input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2); -// $input-height: calc(#{$input-height-inner} + #{$input-height-border}); +// $label-margin-bottom: .5rem !default; -// $input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2); -// $input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}); +// $input-padding-y: $input-btn-padding-y !default; +// $input-padding-x: $input-btn-padding-x !default; +// $input-line-height: $input-btn-line-height !default; -// $input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2); -// $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}); +// $input-padding-y-sm: $input-btn-padding-y-sm !default; +// $input-padding-x-sm: $input-btn-padding-x-sm !default; +// $input-line-height-sm: $input-btn-line-height-sm !default; -// $input-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +// $input-padding-y-lg: $input-btn-padding-y-lg !default; +// $input-padding-x-lg: $input-btn-padding-x-lg !default; +// $input-line-height-lg: $input-btn-line-height-lg !default; -// $form-text-margin-top: .25rem; +// $input-bg: $white !default; +// $input-disabled-bg: $gray-200 !default; -// $form-check-margin-bottom: .5rem; -// $form-check-input-gutter: 1.25rem; -// $form-check-input-margin-y: .25rem; -// $form-check-input-margin-x: .25rem; +// $input-color: $gray-700 !default; +// $input-border-color: $gray-400 !default; +// $input-border-width: $input-btn-border-width !default; +// $input-box-shadow: inset 0 1px 1px rgba($black, .075) !default; -// $form-check-inline-margin-x: .75rem; +// $input-border-radius: $border-radius !default; +// $input-border-radius-lg: $border-radius-lg !default; +// $input-border-radius-sm: $border-radius-sm !default; -// $form-group-margin-bottom: 1rem; +// $input-focus-bg: $input-bg !default; +// $input-focus-border-color: lighten($component-active-bg, 25%) !default; +// $input-focus-color: $input-color !default; +// $input-focus-width: $input-btn-focus-width !default; +// $input-focus-box-shadow: $input-btn-focus-box-shadow !default; -// $input-group-addon-color: $input-color; -// $input-group-addon-bg: $gray-200; -// $input-group-addon-border-color: $input-border-color; -// $input-group-btn-border-color: $input-border-color; +// $input-placeholder-color: $gray-600 !default; +// $input-plaintext-color: $body-color !default; -// $custom-control-gutter: 1.5rem; -// $custom-control-spacer-y: .25rem; -// $custom-control-spacer-x: 1rem; +// $input-height-border: $input-border-width * 2 !default; -// $custom-control-indicator-size: 1rem; -// $custom-control-indicator-bg: #ddd; -// $custom-control-indicator-bg-size: 50% 50%; -// $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black,.1); +// $input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default; +// $input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default; -// $custom-control-indicator-disabled-bg: $gray-200; -// $custom-control-description-disabled-color: $gray-600; +// $input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default; +// $input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default; -// $custom-control-indicator-checked-color: $white; -// $custom-control-indicator-checked-bg: theme-color("primary"); -// $custom-control-indicator-checked-box-shadow: none; +// $input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default; +// $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default; -// $custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, 0 0 0 3px theme-color("primary"); +// $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default; -// $custom-control-indicator-active-color: $white; -// $custom-control-indicator-active-bg: lighten(theme-color("primary"), 35%); -// $custom-control-indicator-active-box-shadow: none; +// $form-text-margin-top: .25rem !default; -// $custom-checkbox-indicator-border-radius: $border-radius; -// $custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23"); +// $form-check-input-gutter: 1.25rem !default; +// $form-check-input-margin-y: .3rem !default; +// $form-check-input-margin-x: .25rem !default; -// $custom-checkbox-indicator-indeterminate-bg: theme-color("primary"); -// $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color; -// $custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23"); -// $custom-checkbox-indicator-indeterminate-box-shadow: none; +// $form-check-inline-margin-x: .75rem !default; +// $form-check-inline-input-margin-x: .3125rem !default; -// $custom-radio-indicator-border-radius: 50%; -// $custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), "#", "%23"); +// $form-group-margin-bottom: 1rem !default; -// $custom-select-padding-y: .375rem; -// $custom-select-padding-x: .75rem ; -// $custom-select-height: $input-height ; -// $custom-select-indicator-padding: 1rem; // Extra padding to account for the presence of the background-image based indicator -// $custom-select-line-height: $input-btn-line-height; -// $custom-select-color: $input-color; -// $custom-select-disabled-color: $gray-600; -// $custom-select-bg: $white; -// $custom-select-disabled-bg: $gray-200; -// $custom-select-bg-size: 8px 10px; // In pixels because image dimensions -// $custom-select-indicator-color: #333; -// $custom-select-indicator: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E"), "#", "%23"); -// $custom-select-border-width: $input-btn-border-width; -// $custom-select-border-color: $input-border-color; -// $custom-select-border-radius: $border-radius; +// $input-group-addon-color: $input-color !default; +// $input-group-addon-bg: $gray-200 !default; +// $input-group-addon-border-color: $input-border-color !default; -// $custom-select-focus-border-color: lighten(theme-color("primary"), 25%); -// $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5); +// $custom-control-gutter: 1.5rem !default; +// $custom-control-spacer-x: 1rem !default; + +// $custom-control-indicator-size: 1rem !default; +// $custom-control-indicator-bg: $gray-300 !default; +// $custom-control-indicator-bg-size: 50% 50% !default; +// $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default; -// $custom-select-font-size-sm: 75%; -// $custom-select-height-sm: $input-height-sm; - -// $custom-file-height: $input-height; -// $custom-file-width: 14rem; -// $custom-file-focus-box-shadow: 0 0 0 .075rem $white, 0 0 0 .2rem theme-color("primary"); - -// $custom-file-padding-y: $input-btn-padding-y; -// $custom-file-padding-x: $input-btn-padding-x; -// $custom-file-line-height: $input-btn-line-height; -// $custom-file-color: $input-color; -// $custom-file-bg: $input-bg; -// $custom-file-border-width: $input-btn-border-width; -// $custom-file-border-color: $input-border-color; -// $custom-file-border-radius: $input-border-radius; -// $custom-file-box-shadow: $input-box-shadow; -// $custom-file-button-color: $custom-file-color; -// $custom-file-button-bg: $input-group-addon-bg; +// $custom-control-indicator-disabled-bg: $gray-200 !default; +// $custom-control-label-disabled-color: $gray-600 !default; + +// $custom-control-indicator-checked-color: $component-active-color !default; +// $custom-control-indicator-checked-bg: $component-active-bg !default; +// $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default; +// $custom-control-indicator-checked-box-shadow: none !default; + +// $custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default; + +// $custom-control-indicator-active-color: $component-active-color !default; +// $custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default; +// $custom-control-indicator-active-box-shadow: none !default; + +// $custom-checkbox-indicator-border-radius: $border-radius !default; +// $custom-checkbox-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"), "#", "%23") !default; + +// $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default; +// $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default; +// $custom-checkbox-indicator-icon-indeterminate: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E"), "#", "%23") !default; +// $custom-checkbox-indicator-indeterminate-box-shadow: none !default; + +// $custom-radio-indicator-border-radius: 50% !default; +// $custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E"), "#", "%23") !default; + +// $custom-select-padding-y: .375rem !default; +// $custom-select-padding-x: .75rem !default; +// $custom-select-height: $input-height !default; +// $custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator +// $custom-select-line-height: $input-btn-line-height !default; +// $custom-select-color: $input-color !default; +// $custom-select-disabled-color: $gray-600 !default; +// $custom-select-bg: $input-bg !default; +// $custom-select-disabled-bg: $gray-200 !default; +// $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions +// $custom-select-indicator-color: $gray-800 !default; +// $custom-select-indicator: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E"), "#", "%23") !default; +// $custom-select-border-width: $input-btn-border-width !default; +// $custom-select-border-color: $input-border-color !default; +// $custom-select-border-radius: $border-radius !default; + +// $custom-select-focus-border-color: $input-focus-border-color !default; +// $custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5) !default; + +// $custom-select-font-size-sm: 75% !default; +// $custom-select-height-sm: $input-height-sm !default; + +// $custom-select-font-size-lg: 125% !default; +// $custom-select-height-lg: $input-height-lg !default; + +// $custom-range-track-width: 100% !default; +// $custom-range-track-height: .5rem !default; +// $custom-range-track-cursor: pointer !default; +// $custom-range-track-bg: $gray-300 !default; +// $custom-range-track-border-radius: 1rem !default; +// $custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default; + +// $custom-range-thumb-width: 1rem !default; +// $custom-range-thumb-height: $custom-range-thumb-width !default; +// $custom-range-thumb-bg: $component-active-bg !default; +// $custom-range-thumb-border: 0 !default; +// $custom-range-thumb-border-radius: 1rem !default; +// $custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default; +// $custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default; +// $custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default; + +// $custom-file-height: $input-height !default; +// $custom-file-height-inner: $input-height-inner !default; +// $custom-file-focus-border-color: $input-focus-border-color !default; +// $custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default; + +// $custom-file-padding-y: $input-btn-padding-y !default; +// $custom-file-padding-x: $input-btn-padding-x !default; +// $custom-file-line-height: $input-btn-line-height !default; +// $custom-file-color: $input-color !default; +// $custom-file-bg: $input-bg !default; +// $custom-file-border-width: $input-btn-border-width !default; +// $custom-file-border-color: $input-border-color !default; +// $custom-file-border-radius: $input-border-radius !default; +// $custom-file-box-shadow: $input-box-shadow !default; +// $custom-file-button-color: $custom-file-color !default; +// $custom-file-button-bg: $input-group-addon-bg !default; // $custom-file-text: ( -// placeholder: ( -// en: "Choose file..." -// ), -// button-label: ( -// en: "Browse" -// ) -// ); +// en: "Browse" +// ) !default; -// Form validation -// $form-feedback-valid-color: theme-color("success"); -// $form-feedback-invalid-color: theme-color("danger"); +// // Form validation +// $form-feedback-margin-top: $form-text-margin-top !default; +// $form-feedback-font-size: $small-font-size !default; +// $form-feedback-valid-color: theme-color("success") !default; +// $form-feedback-invalid-color: theme-color("danger") !default; + +// // Dropdowns +// // +// // Dropdown menu container and contents. + +// $dropdown-min-width: 10rem !default; +// $dropdown-padding-y: .5rem !default; +// $dropdown-spacer: .125rem !default; +// $dropdown-bg: $white !default; +// $dropdown-border-color: rgba($black, .15) !default; +// $dropdown-border-radius: $border-radius !default; +// $dropdown-border-width: $border-width !default; +// $dropdown-divider-bg: $gray-200 !default; +// $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default; + +// $dropdown-link-color: $gray-900 !default; +// $dropdown-link-hover-color: darken($gray-900, 5%) !default; +// $dropdown-link-hover-bg: $gray-100 !default; + +// $dropdown-link-active-color: $component-active-color !default; +// $dropdown-link-active-bg: $component-active-bg !default; + +// $dropdown-link-disabled-color: $gray-600 !default; + +// $dropdown-item-padding-y: .25rem !default; +// $dropdown-item-padding-x: 1.5rem !default; -// Dropdowns -// -// Dropdown menu container and contents. +// $dropdown-header-color: $gray-600 !default; -// $dropdown-min-width: 10rem; -// $dropdown-padding-y: .5rem; -// $dropdown-spacer: .125rem; -// $dropdown-bg: $white; -// $dropdown-border-color: rgba($black,.15); -// $dropdown-border-width: $border-width; -// $dropdown-divider-bg: $gray-200; -// $dropdown-box-shadow: 0 .5rem 1rem rgba($black,.175); -// $dropdown-link-color: $gray-900; -// $dropdown-link-hover-color: darken($gray-900, 5%); -// $dropdown-link-hover-bg: $gray-100; +// // Z-index master list +// // +// // Warning: Avoid customizing these values. They're used for a bird's eye view +// // of components dependent on the z-axis and are designed to all work together. -// $dropdown-link-active-color: $component-active-color; -// $dropdown-link-active-bg: $component-active-bg; +// $zindex-dropdown: 1000 !default; +// $zindex-sticky: 1020 !default; +// $zindex-fixed: 1030 !default; +// $zindex-modal-backdrop: 1040 !default; +// $zindex-modal: 1050 !default; +// $zindex-popover: 1060 !default; +// $zindex-tooltip: 1070 !default; -// $dropdown-link-disabled-color: $gray-600; +// // Navs -// $dropdown-item-padding-y: .25rem; -// $dropdown-item-padding-x: 1.5rem; +// $nav-link-padding-y: .5rem !default; +// $nav-link-padding-x: 1rem !default; +// $nav-link-disabled-color: $gray-600 !default; -// $dropdown-header-color: $gray-600; +// $nav-tabs-border-color: $gray-300 !default; +// $nav-tabs-border-width: $border-width !default; +// $nav-tabs-border-radius: $border-radius !default; +// $nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default; +// $nav-tabs-link-active-color: $gray-700 !default; +// $nav-tabs-link-active-bg: $body-bg !default; +// $nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default; +// $nav-pills-border-radius: $border-radius !default; +// $nav-pills-link-active-color: $component-active-color !default; +// $nav-pills-link-active-bg: $component-active-bg !default; -// Z-index master list -// -// Warning: Avoid customizing these values. They're used for a bird's eye view -// of components dependent on the z-axis and are designed to all work together. - -// $zindex-dropdown: 1000; -// $zindex-sticky: 1020; -// $zindex-fixed: 1030; -// $zindex-modal-backdrop: 1040; -// $zindex-modal: 1050; -// $zindex-popover: 1060; -// $zindex-tooltip: 1070; - -// Navs - -// $nav-link-padding-y: .5rem; -// $nav-link-padding-x: 1rem; -// $nav-link-disabled-color: $gray-600; +// $nav-divider-color: $gray-200 !default; +// $nav-divider-margin-y: ($spacer / 2) !default; -// $nav-tabs-border-color: #ddd; -// $nav-tabs-border-width: $border-width; -// $nav-tabs-border-radius: $border-radius; -// $nav-tabs-link-hover-border-color: $gray-200; -// $nav-tabs-link-active-color: $gray-700; -// $nav-tabs-link-active-bg: $body-bg; -// $nav-tabs-link-active-border-color: #ddd; +// // Navbar -// $nav-pills-border-radius: $border-radius; -// $nav-pills-link-active-color: $component-active-color; -// $nav-pills-link-active-bg: $component-active-bg; +// $navbar-padding-y: ($spacer / 2) !default; +// $navbar-padding-x: $spacer !default; -// Navbar +// $navbar-nav-link-padding-x: .5rem !default; -// $navbar-padding-y: ($spacer / 2); -// $navbar-padding-x: $spacer; +// $navbar-brand-font-size: $font-size-lg !default; +// // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link +// $nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default; +// $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default; +// $navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default; -// $navbar-brand-font-size: $font-size-lg; -// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link -// $nav-link-height: $navbar-brand-font-size * $line-height-base; -// $navbar-brand-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2); -// $navbar-brand-padding-y: ($navbar-brand-height - $nav-link-height) / 2; +// $navbar-toggler-padding-y: .25rem !default; +// $navbar-toggler-padding-x: .75rem !default; +// $navbar-toggler-font-size: $font-size-lg !default; +// $navbar-toggler-border-radius: $btn-border-radius !default; -// $navbar-toggler-padding-y: .25rem; -// $navbar-toggler-padding-x: .75rem; -// $navbar-toggler-font-size: $font-size-lg; -// $navbar-toggler-border-radius: $btn-border-radius; +// $navbar-dark-color: rgba($white, .5) !default; +// $navbar-dark-hover-color: rgba($white, .75) !default; +// $navbar-dark-active-color: $white !default; +// $navbar-dark-disabled-color: rgba($white, .25) !default; +// $navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default; +// $navbar-dark-toggler-border-color: rgba($white, .1) !default; -// $navbar-dark-color: rgba($white,.5); -// $navbar-dark-hover-color: rgba($white,.75); -// $navbar-dark-active-color: rgba($white,1); -// $navbar-dark-disabled-color: rgba($white,.25); -// $navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23"); -// $navbar-dark-toggler-border-color: rgba($white,.1); +// $navbar-light-color: rgba($black, .5) !default; +// $navbar-light-hover-color: rgba($black, .7) !default; +// $navbar-light-active-color: rgba($black, .9) !default; +// $navbar-light-disabled-color: rgba($black, .3) !default; +// $navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23") !default; +// $navbar-light-toggler-border-color: rgba($black, .1) !default; -// $navbar-light-color: rgba($black,.5); -// $navbar-light-hover-color: rgba($black,.7); -// $navbar-light-active-color: rgba($black,.9); -// $navbar-light-disabled-color: rgba($black,.3); -// $navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"), "#", "%23"); -// $navbar-light-toggler-border-color: rgba($black,.1); +// // Pagination -// Pagination +// $pagination-padding-y: .5rem !default; +// $pagination-padding-x: .75rem !default; +// $pagination-padding-y-sm: .25rem !default; +// $pagination-padding-x-sm: .5rem !default; +// $pagination-padding-y-lg: .75rem !default; +// $pagination-padding-x-lg: 1.5rem !default; +// $pagination-line-height: 1.25 !default; -// $pagination-padding-y: .5rem; -// $pagination-padding-x: .75rem; -// $pagination-padding-y-sm: .25rem; -// $pagination-padding-x-sm: .5rem; -// $pagination-padding-y-lg: .75rem; -// $pagination-padding-x-lg: 1.5rem; -// $pagination-line-height: 1.25; +// $pagination-color: $link-color !default; +// $pagination-bg: $white !default; +// $pagination-border-width: $border-width !default; +// $pagination-border-color: $gray-300 !default; -// $pagination-color: $link-color; -// $pagination-bg: $white; -// $pagination-border-width: $border-width; -// $pagination-border-color: #ddd; +// $pagination-focus-box-shadow: $input-btn-focus-box-shadow !default; +// $pagination-focus-outline: 0 !default; -// $pagination-hover-color: $link-hover-color; -// $pagination-hover-bg: $gray-200; -// $pagination-hover-border-color: #ddd; +// $pagination-hover-color: $link-hover-color !default; +// $pagination-hover-bg: $gray-200 !default; +// $pagination-hover-border-color: $gray-300 !default; -// $pagination-active-color: $white; -// $pagination-active-bg: theme-color("primary"); -// $pagination-active-border-color: theme-color("primary"); +// $pagination-active-color: $component-active-color !default; +// $pagination-active-bg: $component-active-bg !default; +// $pagination-active-border-color: $pagination-active-bg !default; -// $pagination-disabled-color: $gray-600; -// $pagination-disabled-bg: $white; -// $pagination-disabled-border-color: #ddd; +// $pagination-disabled-color: $gray-600 !default; +// $pagination-disabled-bg: $white !default; +// $pagination-disabled-border-color: $gray-300 !default; -// Jumbotron +// // Jumbotron -// $jumbotron-padding: 2rem; -// $jumbotron-bg: $gray-200; +// $jumbotron-padding: 2rem !default; +// $jumbotron-bg: $gray-200 !default; -// Cards +// // Cards -// $card-spacer-y: .75rem; -// $card-spacer-x: 1.25rem; -// $card-border-width: $border-width; -// $card-border-radius: $border-radius; -// $card-border-color: rgba($black,.125); -// $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}); -// $card-cap-bg: rgba($black, .03); -// $card-bg: $white; +// $card-spacer-y: .75rem !default; +// $card-spacer-x: 1.25rem !default; +// $card-border-width: $border-width !default; +// $card-border-radius: $border-radius !default; +// $card-border-color: rgba($black, .125) !default; +// $card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default; +// $card-cap-bg: rgba($black, .03) !default; +// $card-bg: $white !default; -// $card-img-overlay-padding: 1.25rem; +// $card-img-overlay-padding: 1.25rem !default; -// $card-group-margin: ($grid-gutter-width / 2); -// $card-deck-margin: $card-group-margin; +// $card-group-margin: ($grid-gutter-width / 2) !default; +// $card-deck-margin: $card-group-margin !default; -// $card-columns-count: 3; -// $card-columns-gap: 1.25rem; -// $card-columns-margin: $card-spacer-y; +// $card-columns-count: 3 !default; +// $card-columns-gap: 1.25rem !default; +// $card-columns-margin: $card-spacer-y !default; -// Tooltips +// // Tooltips -// $tooltip-max-width: 200px; -// $tooltip-color: $white; -// $tooltip-bg: $black; -// $tooltip-opacity: .9; -// $tooltip-padding-y: 3px; -// $tooltip-padding-x: 8px; -// $tooltip-margin: 0; +// $tooltip-font-size: $font-size-sm !default; +// $tooltip-max-width: 200px !default; +// $tooltip-color: $white !default; +// $tooltip-bg: $black !default; +// $tooltip-border-radius: $border-radius !default; +// $tooltip-opacity: .9 !default; +// $tooltip-padding-y: .25rem !default; +// $tooltip-padding-x: .5rem !default; +// $tooltip-margin: 0 !default; +// $tooltip-arrow-width: .8rem !default; +// $tooltip-arrow-height: .4rem !default; +// $tooltip-arrow-color: $tooltip-bg !default; -// $tooltip-arrow-width: 5px; -// $tooltip-arrow-height: 5px; -// $tooltip-arrow-color: $tooltip-bg; +// // Popovers -// Popovers +// $popover-font-size: $font-size-sm !default; +// $popover-bg: $white !default; +// $popover-max-width: 276px !default; +// $popover-border-width: $border-width !default; +// $popover-border-color: rgba($black, .2) !default; +// $popover-border-radius: $border-radius-lg !default; +// $popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default; -// $popover-inner-padding: 1px; -// $popover-bg: $white; -// $popover-max-width: 276px; -// $popover-border-width: $border-width; -// $popover-border-color: rgba($black,.2); -// $popover-box-shadow: 0 5px 10px rgba($black,.2); +// $popover-header-bg: darken($popover-bg, 3%) !default; +// $popover-header-color: $headings-color !default; +// $popover-header-padding-y: .5rem !default; +// $popover-header-padding-x: .75rem !default; -// $popover-header-bg: darken($popover-bg, 3%); -// $popover-header-color: $headings-color; -// $popover-header-padding-y: 8px; -// $popover-header-padding-x: 14px; +// $popover-body-color: $body-color !default; +// $popover-body-padding-y: $popover-header-padding-y !default; +// $popover-body-padding-x: $popover-header-padding-x !default; -// $popover-body-color: $body-color; -// $popover-body-padding-y: 9px; -// $popover-body-padding-x: 14px; +// $popover-arrow-width: 1rem !default; +// $popover-arrow-height: .5rem !default; +// $popover-arrow-color: $popover-bg !default; -// $popover-arrow-width: 10px; -// $popover-arrow-height: 5px; -// $popover-arrow-color: $popover-bg; +// $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default; -// $popover-arrow-outer-width: ($popover-arrow-width + 1px); -// $popover-arrow-outer-color: fade-in($popover-border-color, .05); +// // Badges -// Badges +// $badge-font-size: 75% !default; +// $badge-font-weight: $font-weight-bold !default; +// $badge-padding-y: .25em !default; +// $badge-padding-x: .4em !default; +// $badge-border-radius: $border-radius !default; -// $badge-font-size: 75%; -// $badge-font-weight: $font-weight-bold; -// $badge-padding-y: .25em; -// $badge-padding-x: .4em; +// $badge-pill-padding-x: .6em !default; +// // Use a higher than normal value to ensure completely rounded edges when +// // customizing padding or font-size on labels. +// $badge-pill-border-radius: 10rem !default; -// $badge-pill-padding-x: .6em; -// Use a higher than normal value to ensure completely rounded edges when -// customizing padding or font-size on labels. -// $badge-pill-border-radius: 10rem; +// // Modals -// Modals +// // Padding applied to the modal body +// $modal-inner-padding: 1rem !default; -// Padding applied to the modal body -// $modal-inner-padding: 15px; +// $modal-dialog-margin: .5rem !default; +// $modal-dialog-margin-y-sm-up: 1.75rem !default; -// $modal-dialog-margin: 10px; -// $modal-dialog-margin-y-sm-up: 30px; +// $modal-title-line-height: $line-height-base !default; -// $modal-title-line-height: $line-height-base; +// $modal-content-bg: $white !default; +// $modal-content-border-color: rgba($black, .2) !default; +// $modal-content-border-width: $border-width !default; +// $modal-content-border-radius: $border-radius-lg !default; +// $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default; +// $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default; -// $modal-content-bg: $white; -// $modal-content-border-color: rgba($black,.2); -// $modal-content-border-width: $border-width; -// $modal-content-box-shadow-xs: 0 3px 9px rgba($black,.5); -// $modal-content-box-shadow-sm-up: 0 5px 15px rgba($black,.5); +// $modal-backdrop-bg: $black !default; +// $modal-backdrop-opacity: .5 !default; +// $modal-header-border-color: $gray-200 !default; +// $modal-footer-border-color: $modal-header-border-color !default; +// $modal-header-border-width: $modal-content-border-width !default; +// $modal-footer-border-width: $modal-header-border-width !default; +// $modal-header-padding: 1rem !default; -// $modal-backdrop-bg: $black; -// $modal-backdrop-opacity: .5; -// $modal-header-border-color: $gray-200; -// $modal-footer-border-color: $modal-header-border-color; -// $modal-header-border-width: $modal-content-border-width; -// $modal-footer-border-width: $modal-header-border-width; -// $modal-header-padding: 15px; +// $modal-lg: 800px !default; +// $modal-md: 500px !default; +// $modal-sm: 300px !default; -// $modal-lg: 800px; -// $modal-md: 500px; -// $modal-sm: 300px; +// $modal-transition: transform .3s ease-out !default; -// $modal-transition: transform .3s ease-out; +// // Alerts +// // +// // Define alert colors, border radius, and padding. -// Alerts -// -// Define alert colors, border radius, and padding. +// $alert-padding-y: .75rem !default; +// $alert-padding-x: 1.25rem !default; +// $alert-margin-bottom: 1rem !default; +// $alert-border-radius: $border-radius !default; +// $alert-link-font-weight: $font-weight-bold !default; +// $alert-border-width: $border-width !default; + +// $alert-bg-level: -10 !default; +// $alert-border-level: -9 !default; +// $alert-color-level: 6 !default; + + +// // Progress bars -// $alert-padding-y: .75rem; -// $alert-padding-x: 1.25rem; -// $alert-margin-bottom: 1rem; -// $alert-border-radius: $border-radius; -// $alert-link-font-weight: $font-weight-bold; -// $alert-border-width: $border-width; +// $progress-height: 1rem !default; +// $progress-font-size: ($font-size-base * .75) !default; +// $progress-bg: $gray-200 !default; +// $progress-border-radius: $border-radius !default; +// $progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default; +// $progress-bar-color: $white !default; +// $progress-bar-bg: theme-color("primary") !default; +// $progress-bar-animation-timing: 1s linear infinite !default; +// $progress-bar-transition: width .6s ease !default; +// // List group -// Progress bars +// $list-group-bg: $white !default; +// $list-group-border-color: rgba($black, .125) !default; +// $list-group-border-width: $border-width !default; +// $list-group-border-radius: $border-radius !default; -// $progress-height: 1rem; -// $progress-font-size: .75rem; -// $progress-bg: $gray-200; -// $progress-border-radius: $border-radius; -// $progress-box-shadow: inset 0 .1rem .1rem rgba($black,.1); -// $progress-bar-color: $white; -// $progress-bar-bg: theme-color("primary"); -// $progress-bar-animation-timing: 1s linear infinite; -// $progress-bar-transition: width .6s ease; +// $list-group-item-padding-y: .75rem !default; +// $list-group-item-padding-x: 1.25rem !default; -// List group +// $list-group-hover-bg: $gray-100 !default; +// $list-group-active-color: $component-active-color !default; +// $list-group-active-bg: $component-active-bg !default; +// $list-group-active-border-color: $list-group-active-bg !default; -// $list-group-bg: $white; -// $list-group-border-color: rgba($black,.125); -// $list-group-border-width: $border-width; -// $list-group-border-radius: $border-radius; +// $list-group-disabled-color: $gray-600 !default; +// $list-group-disabled-bg: $list-group-bg !default; -// $list-group-item-padding-y: .75rem; -// $list-group-item-padding-x: 1.25rem; +// $list-group-action-color: $gray-700 !default; +// $list-group-action-hover-color: $list-group-action-color !default; -// $list-group-hover-bg: $gray-100; -// $list-group-active-color: $component-active-color; -// $list-group-active-bg: $component-active-bg; -// $list-group-active-border-color: $list-group-active-bg; +// $list-group-action-active-color: $body-color !default; +// $list-group-action-active-bg: $gray-200 !default; -// $list-group-disabled-color: $gray-600; -// $list-group-disabled-bg: $list-group-bg; -// $list-group-action-color: $gray-700; -// $list-group-action-hover-color: $list-group-action-color; +// // Image thumbnails -// $list-group-action-active-color: $body-color; -// $list-group-action-active-bg: $gray-200; +// $thumbnail-padding: .25rem !default; +// $thumbnail-bg: $body-bg !default; +// $thumbnail-border-width: $border-width !default; +// $thumbnail-border-color: $gray-300 !default; +// $thumbnail-border-radius: $border-radius !default; +// $thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default; -// Image thumbnails +// // Figures -// $thumbnail-padding: .25rem; -// $thumbnail-bg: $body-bg; -// $thumbnail-border-width: $border-width; -// $thumbnail-border-color: #ddd; -// $thumbnail-border-radius: $border-radius; -// $thumbnail-box-shadow: 0 1px 2px rgba($black,.075); -// $thumbnail-transition: all .2s ease-in-out; +// $figure-caption-font-size: 90% !default; +// $figure-caption-color: $gray-600 !default; -// Figures +// // Breadcrumbs -// $figure-caption-font-size: 90%; -// $figure-caption-color: $gray-600; +// $breadcrumb-padding-y: .75rem !default; +// $breadcrumb-padding-x: 1rem !default; +// $breadcrumb-item-padding: .5rem !default; +// $breadcrumb-margin-bottom: 1rem !default; -// Breadcrumbs +// $breadcrumb-bg: $gray-200 !default; +// $breadcrumb-divider-color: $gray-600 !default; +// $breadcrumb-active-color: $gray-600 !default; +// $breadcrumb-divider: quote("/") !default; -// $breadcrumb-padding-y: .75rem; -// $breadcrumb-padding-x: 1rem; -// $breadcrumb-item-padding: .5rem; +// $breadcrumb-border-radius: $border-radius !default; -// $breadcrumb-margin-bottom: 1rem; -// $breadcrumb-bg: $gray-200; -// $breadcrumb-divider-color: $gray-600; -// $breadcrumb-active-color: $gray-600; -// $breadcrumb-divider: "/"; +// // Carousel +// $carousel-control-color: $white !default; +// $carousel-control-width: 15% !default; +// $carousel-control-opacity: .5 !default; -// Carousel +// $carousel-indicator-width: 30px !default; +// $carousel-indicator-height: 3px !default; +// $carousel-indicator-spacer: 3px !default; +// $carousel-indicator-active-bg: $white !default; -// $carousel-control-color: $white; -// $carousel-control-width: 15%; -// $carousel-control-opacity: .5; +// $carousel-caption-width: 70% !default; +// $carousel-caption-color: $white !default; -// $carousel-indicator-width: 30px; -// $carousel-indicator-height: 3px; -// $carousel-indicator-spacer: 3px; -// $carousel-indicator-active-bg: $white; +// $carousel-control-icon-width: 20px !default; -// $carousel-caption-width: 70%; -// $carousel-caption-color: $white; +// $carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), "#", "%23") !default; +// $carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), "#", "%23") !default; -// $carousel-control-icon-width: 20px; +// $carousel-transition: transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`) -// $carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"), "#", "%23"); -// $carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"), "#", "%23"); -// $carousel-transition: transform .6s ease; +// // Close +// $close-font-size: $font-size-base * 1.5 !default; +// $close-font-weight: $font-weight-bold !default; +// $close-color: $black !default; +// $close-text-shadow: 0 1px 0 $white !default; -// Close +// // Code -// $close-font-size: $font-size-base * 1.5; -// $close-font-weight: $font-weight-bold; -// $close-color: $black; -// $close-text-shadow: 0 1px 0 $white; +// $code-font-size: 87.5% !default; +// $code-color: $pink !default; -// Code +// $kbd-padding-y: .2rem !default; +// $kbd-padding-x: .4rem !default; +// $kbd-font-size: $code-font-size !default; +// $kbd-color: $white !default; +// $kbd-bg: $gray-900 !default; -// $code-font-size: 90%; -// $code-padding-y: .2rem; -// $code-padding-x: .4rem; -// $code-color: #bd4147; -// $code-bg: $gray-100; +// $pre-color: $gray-900 !default; +// $pre-scrollable-max-height: 340px !default; -// $kbd-color: $white; -// $kbd-bg: $gray-900; -// $pre-color: $gray-900; -// $pre-scrollable-max-height: 340px; +// // Printing +// $print-page-size: a3 !default; +// $print-body-min-width: map-get($grid-breakpoints, "lg") !default; diff --git a/public/assets/.sprockets-manifest-3166fa9c4d5aaa1767b17f49852da78c.json b/public/assets/.sprockets-manifest-3166fa9c4d5aaa1767b17f49852da78c.json index 82be9c0b..f21c6abb 100644 --- a/public/assets/.sprockets-manifest-3166fa9c4d5aaa1767b17f49852da78c.json +++ b/public/assets/.sprockets-manifest-3166fa9c4d5aaa1767b17f49852da78c.json @@ -1 +1 @@ -{"files":{"layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png":{"logical_path":"layers-2x.png","mtime":"2018-02-17T21:20:08+00:00","size":1259,"digest":"066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf","integrity":"sha256-Bm2sqFDY/77wB68AsG6sABVyje4nnFHzy2xxbffELt8="},"layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png":{"logical_path":"layers.png","mtime":"2018-02-17T21:20:08+00:00","size":696,"digest":"1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6","integrity":"sha256-Hbvp0CjikvNvy6j4s6KNXokydU/CIVuaxp5M3s9RB8Y="},"marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png":{"logical_path":"marker-icon-2x.png","mtime":"2018-02-17T21:20:08+00:00","size":2464,"digest":"00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528","integrity":"sha256-ABecTB7oMNOhCEEq4NKU9Vd2z+sIXGASmjmqb8SuJSg="},"marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png":{"logical_path":"marker-icon.png","mtime":"2018-02-17T21:20:08+00:00","size":1466,"digest":"574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437","integrity":"sha256-V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy/owHesdxDc="},"marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png":{"logical_path":"marker-shadow.png","mtime":"2018-02-17T21:20:08+00:00","size":618,"digest":"264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da","integrity":"sha256-Jk9cZAM58ELdcpBiz8BMF/jqDymIK1OOOEjtjxDttNo="},"application-fca9acae9a9890c80a5d5a84a347a54f771e767fa5259502bbb8f890267c9b32.js":{"logical_path":"application.js","mtime":"2018-02-17T07:16:43+00:00","size":1142230,"digest":"fca9acae9a9890c80a5d5a84a347a54f771e767fa5259502bbb8f890267c9b32","integrity":"sha256-/KmsrpqYkMgKXVqEo0elT3cedn+lJZUCu7j4kCZ8mzI="},"leaflet-src.js-6eed528b5678ee4f34b8be267a8da5d14734d58d56baeea6a31e9819e6630775.map":{"logical_path":"leaflet-src.js.map","mtime":"2018-02-13T16:20:12+00:00","size":755043,"digest":"6eed528b5678ee4f34b8be267a8da5d14734d58d56baeea6a31e9819e6630775","integrity":"sha256-bu1Si1Z47k80uL4meo2l0Uc01Y1Wuu6mox6YGeZjB3U="},"application-c84b81474b7da42f9770a624aa28048d9f2b043a8c5aeb76d78d6bee8a91d6d7.css":{"logical_path":"application.css","mtime":"2018-02-17T07:16:43+00:00","size":151419,"digest":"c84b81474b7da42f9770a624aa28048d9f2b043a8c5aeb76d78d6bee8a91d6d7","integrity":"sha256-yEuBR0t9pC+XcKYkqigEjZ8rBDqMWut2141r7oqR1tc="},"application-236a7ce1734fbb55d484f6212c0e0870483d47985dc385227878eba72bb6843b.js":{"logical_path":"application.js","mtime":"2018-02-17T08:57:13+00:00","size":560939,"digest":"236a7ce1734fbb55d484f6212c0e0870483d47985dc385227878eba72bb6843b","integrity":"sha256-I2p84XNPu1XUhPYhLA4IcEg9R5hdw4UieHjrpyu2hDs="},"application-d0555c2650b6094e6ff271f0a365db2e80bd093ab7de0149c8700afe71f7dc33.css":{"logical_path":"application.css","mtime":"2018-02-17T08:57:13+00:00","size":151459,"digest":"d0555c2650b6094e6ff271f0a365db2e80bd093ab7de0149c8700afe71f7dc33","integrity":"sha256-0FVcJlC2CU5v8nHwo2XbLoC9CTq33gFJyHAK/nH33DM="},"application-f227af72f47efaff46ed4b5db1363ef5e041435d027973012b43cdb98dca6b30.js":{"logical_path":"application.js","mtime":"2018-02-18T07:06:44+00:00","size":893327,"digest":"f227af72f47efaff46ed4b5db1363ef5e041435d027973012b43cdb98dca6b30","integrity":"sha256-8ievcvR++v9G7UtdsTY+9eBBQ10CeXMBK0PNuY3KazA="},"application-14d3ccd11a4e292bb15de3e098654b87cbd40ac5e46f6ea6154bdaab885a0ffc.css":{"logical_path":"application.css","mtime":"2018-02-17T21:37:49+00:00","size":400680,"digest":"14d3ccd11a4e292bb15de3e098654b87cbd40ac5e46f6ea6154bdaab885a0ffc","integrity":"sha256-FNPM0RpOKSuxXePgmGVLh8vUCsXkb26mFUvaq4haD/w="},"leaflet/layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png":{"logical_path":"leaflet/layers-2x.png","mtime":"2018-02-18T08:15:05+00:00","size":1259,"digest":"066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf","integrity":"sha256-Bm2sqFDY/77wB68AsG6sABVyje4nnFHzy2xxbffELt8="},"leaflet/layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png":{"logical_path":"leaflet/layers.png","mtime":"2018-02-18T08:15:05+00:00","size":696,"digest":"1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6","integrity":"sha256-Hbvp0CjikvNvy6j4s6KNXokydU/CIVuaxp5M3s9RB8Y="},"leaflet/marker-icon-2x-violet-d2d4278dacf3fea3d5e9fc2fffbba8a840bc1310cc1457198426e2c11feb4e44.png":{"logical_path":"leaflet/marker-icon-2x-violet.png","mtime":"2018-02-18T08:15:05+00:00","size":4190,"digest":"d2d4278dacf3fea3d5e9fc2fffbba8a840bc1310cc1457198426e2c11feb4e44","integrity":"sha256-0tQnjazz/qPV6fwv/7uoqEC8ExDMFFcZhCbiwR/rTkQ="},"leaflet/marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png":{"logical_path":"leaflet/marker-icon-2x.png","mtime":"2018-02-18T08:15:05+00:00","size":2464,"digest":"00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528","integrity":"sha256-ABecTB7oMNOhCEEq4NKU9Vd2z+sIXGASmjmqb8SuJSg="},"leaflet/marker-icon-violet-6892da1a4188e5ccf68e67aae2a94fbae14ad75915b31555935130ae4fcc4145.png":{"logical_path":"leaflet/marker-icon-violet.png","mtime":"2018-02-18T08:15:05+00:00","size":1859,"digest":"6892da1a4188e5ccf68e67aae2a94fbae14ad75915b31555935130ae4fcc4145","integrity":"sha256-aJLaGkGI5cz2jmeq4qlPuuFK11kVsxVVk1Ewrk/MQUU="},"leaflet/marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png":{"logical_path":"leaflet/marker-icon.png","mtime":"2018-02-18T08:15:05+00:00","size":1466,"digest":"574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437","integrity":"sha256-V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy/owHesdxDc="},"leaflet/marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png":{"logical_path":"leaflet/marker-shadow.png","mtime":"2018-02-18T08:15:05+00:00","size":618,"digest":"264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da","integrity":"sha256-Jk9cZAM58ELdcpBiz8BMF/jqDymIK1OOOEjtjxDttNo="},"application-16ffe3a4ba0563165379ed18eaa03047a3236aab0f87182da0adee5df35cfc19.js":{"logical_path":"application.js","mtime":"2018-02-20T18:37:56+00:00","size":893869,"digest":"16ffe3a4ba0563165379ed18eaa03047a3236aab0f87182da0adee5df35cfc19","integrity":"sha256-Fv/jpLoFYxZTee0Y6qAwR6MjaqsPhxgtoK3uXfNc/Bk="},"application-113441acdfe39db70de608d7f2f5b2f73dd19a8b043c5cab386dcfd51f5bf14f.js":{"logical_path":"application.js","mtime":"2018-03-04T18:47:21+00:00","size":560796,"digest":"113441acdfe39db70de608d7f2f5b2f73dd19a8b043c5cab386dcfd51f5bf14f","integrity":"sha256-ETRBrN/jnbcN5gjX8vWy9z3RmosEPFyrOG3P1R9b8U8="},"application-e2367e1987fa69044be85328ee5159542ee3b1c428c750e26423b48784042557.css":{"logical_path":"application.css","mtime":"2018-02-17T21:37:49+00:00","size":151261,"digest":"e2367e1987fa69044be85328ee5159542ee3b1c428c750e26423b48784042557","integrity":"sha256-4jZ+GYf6aQRL6FMo7lFZVC7jscQox1DiZCO0h4QEJVc="},"application-815a5058786e90c408f9b0e342320b6a8487c961e5008b3b68f559ec6c678a2c.css":{"logical_path":"application.css","mtime":"2018-02-19T21:20:04+00:00","size":151405,"digest":"815a5058786e90c408f9b0e342320b6a8487c961e5008b3b68f559ec6c678a2c","integrity":"sha256-gVpQWHhukMQI+bDjQjILaoSHyWHlAIs7aPVZ7Gxniiw="},"application-688b07c12b6780fd370e4e8d2443ca83e8746cf1512001c85fdc4f79441319c1.css":{"logical_path":"application.css","mtime":"2018-02-22T06:53:09+00:00","size":151442,"digest":"688b07c12b6780fd370e4e8d2443ca83e8746cf1512001c85fdc4f79441319c1","integrity":"sha256-aIsHwStngP03Dk6NJEPKg+h0bPFRIAHIX9xPeUQTGcE="},"application-e147cdaaadeb2d764463df7256a5ebb1f24431e2b499568bb6078ea0b70a21ed.css":{"logical_path":"application.css","mtime":"2018-02-23T19:42:08+00:00","size":401766,"digest":"e147cdaaadeb2d764463df7256a5ebb1f24431e2b499568bb6078ea0b70a21ed","integrity":"sha256-4UfNqq3rLXZEY99yVqXrsfJEMeK0mVaLtgeOoLcKIe0="},"application-2cf45f6c0744bd83e4a49784cc736df6c2454969f2bcd3ad8e09736ba2308479.css":{"logical_path":"application.css","mtime":"2018-03-04T18:47:21+00:00","size":152310,"digest":"2cf45f6c0744bd83e4a49784cc736df6c2454969f2bcd3ad8e09736ba2308479","integrity":"sha256-LPRfbAdEvYPkpJeEzHNt9sJFSWnyvNOtjglza6IwhHk="},"application-39c8a35b541db04c196f9e12dfc1d97349712930459481b1eb9fe8812c1feda1.js":{"logical_path":"application.js","mtime":"2018-04-19T12:27:02+01:00","size":560425,"digest":"39c8a35b541db04c196f9e12dfc1d97349712930459481b1eb9fe8812c1feda1","integrity":"sha256-OcijW1QdsEwZb54S38HZc0lxKTBFlIGx65/ogSwf7aE="},"application-cf9ec488aa6bf5b8ca0c2c014fd20b0964547261175d1a102896f5a3b495f420.css":{"logical_path":"application.css","mtime":"2018-03-19T08:37:53+00:00","size":152514,"digest":"cf9ec488aa6bf5b8ca0c2c014fd20b0964547261175d1a102896f5a3b495f420","integrity":"sha256-z57EiKpr9bjKDCwBT9ILCWRUcmEXXRoQKJb1o7SV9CA="},"application-8157718fb3ce70825dc6e8ec0246b882cd7028cd5abd22d5376ec4c3ee3e80be.css":{"logical_path":"application.css","mtime":"2018-04-02T08:19:01+01:00","size":153340,"digest":"8157718fb3ce70825dc6e8ec0246b882cd7028cd5abd22d5376ec4c3ee3e80be","integrity":"sha256-gVdxj7POcIJdxujsAka4gs1wKM1avSLVN27Ew+4+gL4="},"application-707a0798e5712ce10f1d5b87c75ab5fd1dd4ec9e6b707c12132f06281252ffd0.css":{"logical_path":"application.css","mtime":"2018-04-05T09:23:23+01:00","size":153378,"digest":"707a0798e5712ce10f1d5b87c75ab5fd1dd4ec9e6b707c12132f06281252ffd0","integrity":"sha256-cHoHmOVxLOEPHVuHx1q1/R3U7J5rcHwSEy8GKBJS/9A="},"application-3266c7bd86687d66f7fea036d3eb363d728e14a8eb12819a30870d13ce5c20a4.css":{"logical_path":"application.css","mtime":"2018-04-16T08:45:39+01:00","size":153438,"digest":"3266c7bd86687d66f7fea036d3eb363d728e14a8eb12819a30870d13ce5c20a4","integrity":"sha256-MmbHvYZofWb3/qA20+s2PXKOFKjrEoGaMIcNE85cIKQ="},"application-e51695406f9220e10fc06afe2a2f18e32776109e294b34f1c938afeeecbc27fc.css":{"logical_path":"application.css","mtime":"2018-04-17T12:13:27+01:00","size":153459,"digest":"e51695406f9220e10fc06afe2a2f18e32776109e294b34f1c938afeeecbc27fc","integrity":"sha256-5RaVQG+SIOEPwGr+Ki8Y4yd2EJ4pSzTxyTiv7uy8J/w="},"application-19f60e6ea7840b06f5d59dfa63ba412ca1fa6d251a1a15bca659ed92637b804a.css":{"logical_path":"application.css","mtime":"2018-04-18T20:42:24+01:00","size":154006,"digest":"19f60e6ea7840b06f5d59dfa63ba412ca1fa6d251a1a15bca659ed92637b804a","integrity":"sha256-GfYObqeECwb11Z36Y7pBLKH6bSUaGhW8plntkmN7gEo="},"application-eb62787d5a75f0bcdc622becb41aac3426e08f88c08e73a67a20b26dc6066fb7.css":{"logical_path":"application.css","mtime":"2018-04-19T09:31:10+01:00","size":154145,"digest":"eb62787d5a75f0bcdc622becb41aac3426e08f88c08e73a67a20b26dc6066fb7","integrity":"sha256-62J4fVp18LzcYivstBqsNCbgj4jAjnOmeiCybcYGb7c="},"icons/if_icon-calendar_211633-96d8b4b40a7bc7af5f5821257083b42a158986c679e5aa3144c1fb5c267f757e.svg":{"logical_path":"icons/if_icon-calendar_211633.svg","mtime":"2018-04-19T12:20:22+01:00","size":989,"digest":"96d8b4b40a7bc7af5f5821257083b42a158986c679e5aa3144c1fb5c267f757e","integrity":"sha256-lti0tAp7x69fWCElcIO0KhWJhsZ55aoxRMH7XCZ/dX4="},"icons/if_icon-ios7-location-outline_211766-2185392dfb3feb3ac53b72a00302af749bcc5ecae6a08bf0a32eb222dc4afc70.svg":{"logical_path":"icons/if_icon-ios7-location-outline_211766.svg","mtime":"2018-04-19T12:20:18+01:00","size":1021,"digest":"2185392dfb3feb3ac53b72a00302af749bcc5ecae6a08bf0a32eb222dc4afc70","integrity":"sha256-IYU5Lfs/6zrFO3KgAwKvdJvMXsrmoIvwoy6yItxK/HA="},"application-29fd335152f6a434037b90ee05f9673489a5435377820442b1015620526bf377.css":{"logical_path":"application.css","mtime":"2018-04-19T12:27:02+01:00","size":154193,"digest":"29fd335152f6a434037b90ee05f9673489a5435377820442b1015620526bf377","integrity":"sha256-Kf0zUVL2pDQDe5DuBflnNImlQ1N3ggRCsQFWIFJr83c="},"icons/if_icon-link_211853-837f4c6d43b685637636c5118f2f021e586e69457cc270433e4278cb1b482cf8.svg":{"logical_path":"icons/if_icon-link_211853.svg","mtime":"2018-04-19T12:42:02+01:00","size":1018,"digest":"837f4c6d43b685637636c5118f2f021e586e69457cc270433e4278cb1b482cf8","integrity":"sha256-g39MbUO2hWN2NsURjy8CHlhuaUV8wnBDPkJ4yxtILPg="},"application-536b32812cdee6448d19a61eb7bfb3c35800a2606987b18ac3b3696c8ee491dd.css":{"logical_path":"application.css","mtime":"2018-04-19T17:21:51+01:00","size":154291,"digest":"536b32812cdee6448d19a61eb7bfb3c35800a2606987b18ac3b3696c8ee491dd","integrity":"sha256-U2sygSze5kSNGaYet7+zw1gAomBph7GKw7NpbI7kkd0="},"application-ebd81e4e7256a3a9bf0db06b80274f2d6006983b069b09c63c6e7ac0b7c2290f.js":{"logical_path":"application.js","mtime":"2018-04-19T17:31:04+01:00","size":565591,"digest":"ebd81e4e7256a3a9bf0db06b80274f2d6006983b069b09c63c6e7ac0b7c2290f","integrity":"sha256-69geTnJWo6m/DbBrgCdPLWAGmDsGmwnGPG56wLfCKQ8="},"application-36bd08823dd833e8e59c5f06116fa0980dd8400c2b2e494cfdee3e165301db3f.js":{"logical_path":"application.js","mtime":"2018-04-24T09:02:47+01:00","size":565651,"digest":"36bd08823dd833e8e59c5f06116fa0980dd8400c2b2e494cfdee3e165301db3f","integrity":"sha256-Nr0Igj3YM+jlnF8GEW+gmA3YQAwrLklM/e4+FlMB2z8="},"application-13c2b26404f7b3ee6ef7944e3676e3562fb50f357475132335936b197acfc7c9.css":{"logical_path":"application.css","mtime":"2018-04-19T17:36:01+01:00","size":154323,"digest":"13c2b26404f7b3ee6ef7944e3676e3562fb50f357475132335936b197acfc7c9","integrity":"sha256-E8KyZAT3s+5u95RONnbjVi+1DzV0dRMjNZNrGXrPx8k="},"application-31408a37d336182be33d3cf86187d567fe17213b18044c2b78b81645db4f638e.css":{"logical_path":"application.css","mtime":"2018-04-19T18:08:12+01:00","size":154365,"digest":"31408a37d336182be33d3cf86187d567fe17213b18044c2b78b81645db4f638e","integrity":"sha256-MUCKN9M2GCvjPTz4YYfVZ/4XITsYBEwreLgWRdtPY44="},"samples/adam-whitlock-270558-unsplash-afcf2f17063f371ec0ad495170db234a9b7dc4ab793c648025dceabd39b39047.jpg":{"logical_path":"samples/adam-whitlock-270558-unsplash.jpg","mtime":"2018-04-24T08:12:43+01:00","size":2895520,"digest":"afcf2f17063f371ec0ad495170db234a9b7dc4ab793c648025dceabd39b39047","integrity":"sha256-r88vFwY/Nx7ArUlRcNsjSpt9xKt5PGSAJdzqvTmzkEc="},"samples/cristina-cerda-43101-unsplash-f65c2cb6817ac07da16d94e94ab217006aeb23cb918d824075bbbd00fbe6c115.jpg":{"logical_path":"samples/cristina-cerda-43101-unsplash.jpg","mtime":"2018-04-24T08:12:43+01:00","size":6537727,"digest":"f65c2cb6817ac07da16d94e94ab217006aeb23cb918d824075bbbd00fbe6c115","integrity":"sha256-9lwstoF6wH2hbZTpSrIXAGrrI8uRjYJAdbu9APvmwRU="},"application-e022edb51025acf97b1ec9db382684d583a9a285f7d37ad8f4e975af13c009dc.css":{"logical_path":"application.css","mtime":"2018-04-24T09:02:47+01:00","size":154409,"digest":"e022edb51025acf97b1ec9db382684d583a9a285f7d37ad8f4e975af13c009dc","integrity":"sha256-4CLttRAlrPl7HsnbOCaE1YOpooX303rY9Ol1rxPACdw="},"samples/sample_groups/bass-music-guild-92695b99458cca5f1c19f4623b6ccc1965fabadd3997434023431b449268e902.jpg":{"logical_path":"samples/sample_groups/bass-music-guild.jpg","mtime":"2018-04-26T21:14:28+01:00","size":790679,"digest":"92695b99458cca5f1c19f4623b6ccc1965fabadd3997434023431b449268e902","integrity":"sha256-kmlbmUWMyl8cGfRiO2zMGWX6ut05l0NAI0MbRJJo6QI="},"samples/sample_groups/bookshop-c6aa6156c995fa31a7ab15565a02b8b2045576df9f448cd92fbe82f783e64fa5.jpg":{"logical_path":"samples/sample_groups/bookshop.jpg","mtime":"2018-04-26T21:14:28+01:00","size":10963504,"digest":"c6aa6156c995fa31a7ab15565a02b8b2045576df9f448cd92fbe82f783e64fa5","integrity":"sha256-xqphVsmV+jGnqxVWWgK4sgRVdt+fRIzZL76C94PmT6U="},"samples/sample_groups/bruce-christianson-558321-unsplash-609737d190d63fa119cd42513f838476d4af3afc6942932c673cefdf34a37d33.jpg":{"logical_path":"samples/sample_groups/bruce-christianson-558321-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1398380,"digest":"609737d190d63fa119cd42513f838476d4af3afc6942932c673cefdf34a37d33","integrity":"sha256-YJc30ZDWP6EZzUJRP4OEdtSvOvxpQpMsZzzv3zSjfTM="},"samples/sample_groups/chillhop-4fe6ac7de47f25f496ba8de730ec5ff66beb56fcbbb270db52a0a5316ae66dc3.jpg":{"logical_path":"samples/sample_groups/chillhop.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1017800,"digest":"4fe6ac7de47f25f496ba8de730ec5ff66beb56fcbbb270db52a0a5316ae66dc3","integrity":"sha256-T+asfeR/JfSWuo3nMOxf9mvrVvy7snDbUqClMWrmbcM="},"samples/sample_groups/christin-hume-505815-unsplash-6b62d3f82cc091cc04c8049972f5205623ef5f15d00760e1dfdbff41acbb16a3.jpg":{"logical_path":"samples/sample_groups/christin-hume-505815-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1956713,"digest":"6b62d3f82cc091cc04c8049972f5205623ef5f15d00760e1dfdbff41acbb16a3","integrity":"sha256-a2LT+CzAkcwEyASZcvUgViPvXxXQB2Dh39v/Qay7FqM="},"samples/sample_groups/clem-onojeghuo-143466-unsplash-5566806157b0d56c0c4c2513d164fc2b28042bda561be542f2927c635b44aaa0.jpg":{"logical_path":"samples/sample_groups/clem-onojeghuo-143466-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2898960,"digest":"5566806157b0d56c0c4c2513d164fc2b28042bda561be542f2927c635b44aaa0","integrity":"sha256-VWaAYVew1WwMTCUT0WT8KygEK9pWG+VC8pJ8Y1tEqqA="},"samples/sample_groups/coding-7c346a5655a6053401c1f7adb59b365721ed7aea3ffa1ea65c614a875c9ec68c.jpg":{"logical_path":"samples/sample_groups/coding.jpg","mtime":"2018-04-26T21:14:28+01:00","size":11494241,"digest":"7c346a5655a6053401c1f7adb59b365721ed7aea3ffa1ea65c614a875c9ec68c","integrity":"sha256-fDRqVlWmBTQBwfettZs2VyHteuo/+h6mXGFKh1yexow="},"samples/sample_groups/edm-504d6ae57079ec78eb31abd1ec6d84e2876d62fd2d7c52f97ebd4303337421bc.jpg":{"logical_path":"samples/sample_groups/edm.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1037583,"digest":"504d6ae57079ec78eb31abd1ec6d84e2876d62fd2d7c52f97ebd4303337421bc","integrity":"sha256-UE1q5XB57HjrMavR7G2E4odtYv0tfFL5fr1DAzN0Ibw="},"samples/sample_groups/emily-sea-198689-unsplash-3c7a551e0c0dc9ca3f7a4def19c84972a0bc436c22da8eac09bbc80a4b93d281.jpg":{"logical_path":"samples/sample_groups/emily-sea-198689-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2291075,"digest":"3c7a551e0c0dc9ca3f7a4def19c84972a0bc436c22da8eac09bbc80a4b93d281","integrity":"sha256-PHpVHgwNyco/ek3vGchJcqC8Q2wi2o6sCbvICkuT0oE="},"samples/sample_groups/ingrid-hofstra-527954-unsplash-d4851b2cbd17908629a1adff9c26b917ca0c7e64e5885ea0b016065f535bc177.jpg":{"logical_path":"samples/sample_groups/ingrid-hofstra-527954-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1387645,"digest":"d4851b2cbd17908629a1adff9c26b917ca0c7e64e5885ea0b016065f535bc177","integrity":"sha256-1IUbLL0XkIYpoa3/nCa5F8oMfmTliF6gsBYGX1NbwXc="},"samples/sample_groups/plain-air-oregon-61e3f181480f9e3e33ade40bcd9ebfc2878eadd14b22c8c1ddecc645d6235a23.jpg":{"logical_path":"samples/sample_groups/plain-air-oregon.jpg","mtime":"2018-04-26T21:14:28+01:00","size":3468654,"digest":"61e3f181480f9e3e33ade40bcd9ebfc2878eadd14b22c8c1ddecc645d6235a23","integrity":"sha256-YePxgUgPnj4zreQLzZ6/woeOrdFLIsjB3ezGRdYjWiM="},"samples/sample_groups/progressive-fcf4de446d74ceae617d86b3e7a71e50623f939fdadbf29d8c2f9de88a6bffeb.jpg":{"logical_path":"samples/sample_groups/progressive.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1233916,"digest":"fcf4de446d74ceae617d86b3e7a71e50623f939fdadbf29d8c2f9de88a6bffeb","integrity":"sha256-/PTeRG10zq5hfYaz56ceUGI/k5/a2/KdjC+d6Ipr/+s="},"samples/sample_groups/raveup-19a24bb6c6be4e249896ffd8be8944ffe50656a56e8e99f6380befa30e938683.jpg":{"logical_path":"samples/sample_groups/raveup.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2344954,"digest":"19a24bb6c6be4e249896ffd8be8944ffe50656a56e8e99f6380befa30e938683","integrity":"sha256-GaJLtsa+TiSYlv/YvolE/+UGVqVujpn2OAvvow6ThoM="},"samples/sample_groups/sketching-e2a1fea3a79cf15df4575b79298aaba9d4928065f95b80b413c7d4f5d47db103.jpg":{"logical_path":"samples/sample_groups/sketching.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1181981,"digest":"e2a1fea3a79cf15df4575b79298aaba9d4928065f95b80b413c7d4f5d47db103","integrity":"sha256-4qH+o6ec8V30V1t5KYqrqdSSgGX5W4C0E8fU9dR9sQM="},"samples/sample_groups/taras-shypka-424932-unsplash-0ea22fa928cdcd347c02cd50c72d9ef000375f794c3959c0129367284645408d.jpg":{"logical_path":"samples/sample_groups/taras-shypka-424932-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2295932,"digest":"0ea22fa928cdcd347c02cd50c72d9ef000375f794c3959c0129367284645408d","integrity":"sha256-DqIvqSjNzTR8As1Qxy2e8AA3X3lMOVnAEpNnKEZFQI0="},"samples/sample_groups/tea-sketchers-ea13e9e7b548262986a01aa749b9ca131ed44ab39b936cd492c0202694ed6317.jpg":{"logical_path":"samples/sample_groups/tea-sketchers.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2730782,"digest":"ea13e9e7b548262986a01aa749b9ca131ed44ab39b936cd492c0202694ed6317","integrity":"sha256-6hPp57VIJimGoBqnSbnKEx7USrObk2zUksAgJpTtYxc="},"samples/sample_groups/tenerife-edm-f257f19e40cc6a7e861bb76061ebde244c99010f2872cdffbcb9ea15b27b2f6f.jpg":{"logical_path":"samples/sample_groups/tenerife-edm.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2173649,"digest":"f257f19e40cc6a7e861bb76061ebde244c99010f2872cdffbcb9ea15b27b2f6f","integrity":"sha256-8lfxnkDMan6GG7dgYeveJEyZAQ8ocs3/vLnqFbJ7L28="},"samples/sample_groups/tenerife-02ce4366a51375383978ba943dffd2e4998bf3f4bc9415645f91357a41ae0435.jpg":{"logical_path":"samples/sample_groups/tenerife.jpg","mtime":"2018-04-26T21:14:28+01:00","size":4568711,"digest":"02ce4366a51375383978ba943dffd2e4998bf3f4bc9415645f91357a41ae0435","integrity":"sha256-As5DZqUTdTg5eLqUPf/S5JmL8/S8lBVkX5E1ekGuBDU="},"samples/sample_groups/tomasz-wozniak-484204-unsplash-8b65afbe766202eb42c3c6d95613c21aba19de0c905887f7846b5bdc0a880490.jpg":{"logical_path":"samples/sample_groups/tomasz-wozniak-484204-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1922979,"digest":"8b65afbe766202eb42c3c6d95613c21aba19de0c905887f7846b5bdc0a880490","integrity":"sha256-i2WvvnZiAutCw8bZVhPCGroZ3gyQWIf3hGtb3AqIBJA="},"samples/sample_groups/watermarbling-22a9ce88f1caec972233cc51d648364060c947bb7b25807e8d0bc67a2f349be7.jpg":{"logical_path":"samples/sample_groups/watermarbling.jpg","mtime":"2018-04-26T21:14:28+01:00","size":3528869,"digest":"22a9ce88f1caec972233cc51d648364060c947bb7b25807e8d0bc67a2f349be7","integrity":"sha256-IqnOiPHK7JciM8xR1kg2QGDJR7t7JYB+jQvGei80m+c="},"application-4b2e1a8fb90190b655299118e329cfb50147ec529f57989ccc266eef423c4dfe.js":{"logical_path":"application.js","mtime":"2018-04-27T09:43:23+01:00","size":576457,"digest":"4b2e1a8fb90190b655299118e329cfb50147ec529f57989ccc266eef423c4dfe","integrity":"sha256-Sy4aj7kBkLZVKZEY4ynPtQFH7FKfV5iczCZu70I8Tf4="},"samples/sample_events/borna-bevanda-377277-unsplash-135dfb007452dccf18dffcd8dbfb7950c6fe1c9b1e6172b00da862c25bca189f.jpg":{"logical_path":"samples/sample_events/borna-bevanda-377277-unsplash.jpg","mtime":"2018-04-27T12:08:02+01:00","size":2565540,"digest":"135dfb007452dccf18dffcd8dbfb7950c6fe1c9b1e6172b00da862c25bca189f","integrity":"sha256-E137AHRS3M8Y3/zY2/t5UMb+HJseYXKwDahiwlvKGJ8="},"application-cb0ad31dcd517ff3a4e15d432ae6cec492c012b419343393b56f47f58bbf0fcb.css":{"logical_path":"application.css","mtime":"2018-04-27T15:01:50+01:00","size":154438,"digest":"cb0ad31dcd517ff3a4e15d432ae6cec492c012b419343393b56f47f58bbf0fcb","integrity":"sha256-ywrTHc1Rf/Ok4V1DKubOxJLAErQZNDOTtW9H9Yu/D8s="},"application-60bfd65252b44717d749f27c377f4677486bc47b6fffbf3de653198b34976078.js":{"logical_path":"application.js","mtime":"2018-05-02T20:35:49+01:00","size":576457,"digest":"60bfd65252b44717d749f27c377f4677486bc47b6fffbf3de653198b34976078","integrity":"sha256-YL/WUlK0RxfXSfJ8N39Gd0hrxHtv/7895lMZizSXYHg="},"application-a75ffbc480a40deab1f4018a38c2d4d07a8efdde418985a2a36f7d724f323c9e.css":{"logical_path":"application.css","mtime":"2018-05-02T20:35:49+01:00","size":155082,"digest":"a75ffbc480a40deab1f4018a38c2d4d07a8efdde418985a2a36f7d724f323c9e","integrity":"sha256-p1/7xICkDeqx9AGKOMLU0HqO/d5BiYWio299ck8yPJ4="},"application-35b3445e43cdb234b97d81138278c06910025fb0f0337d9625b5bc463889a877.js":{"logical_path":"application.js","mtime":"2018-05-10T21:47:08+01:00","size":576457,"digest":"35b3445e43cdb234b97d81138278c06910025fb0f0337d9625b5bc463889a877","integrity":"sha256-NbNEXkPNsjS5fYETgnjAaRACX7DwM32WJbW8RjiJqHc="},"application-bb7f94c6891b52072456add2e5c3b0af2091eefd1b14a235e4c773ddd5350609.css":{"logical_path":"application.css","mtime":"2018-05-03T08:28:16+01:00","size":155228,"digest":"bb7f94c6891b52072456add2e5c3b0af2091eefd1b14a235e4c773ddd5350609","integrity":"sha256-u3+UxokbUgckVq3S5cOwryCR7v0bFKI15Mdz3dU1Bgk="},"application-c14a953e91d3bacff1d4c84ed4beb11373fad361465c1e51aa3d1ba5e7ce51ac.css":{"logical_path":"application.css","mtime":"2018-05-03T22:04:59+01:00","size":155324,"digest":"c14a953e91d3bacff1d4c84ed4beb11373fad361465c1e51aa3d1ba5e7ce51ac","integrity":"sha256-wUqVPpHTus/x1MhO1L6xE3P602FGXB5Rqj0bpefOUaw="},"application-9e8381aa1d447f92ad3dc4b08831bd44ae4310e59aed175f35df92d08f9c4070.css":{"logical_path":"application.css","mtime":"2018-05-04T08:56:15+01:00","size":154863,"digest":"9e8381aa1d447f92ad3dc4b08831bd44ae4310e59aed175f35df92d08f9c4070","integrity":"sha256-noOBqh1Ef5KtPcSwiDG9RK5DEOWa7RdfNd+S0I+cQHA="},"application-40978c30ee5f041d65ebce349f90bb2693fa128a8972356af0d5927d89809fd9.css":{"logical_path":"application.css","mtime":"2018-05-04T09:17:51+01:00","size":154981,"digest":"40978c30ee5f041d65ebce349f90bb2693fa128a8972356af0d5927d89809fd9","integrity":"sha256-QJeMMO5fBB1l6840n5C7JpP6EoqJcjVq8NWSfYmAn9k="},"application-a2c9ab4d32f94a4239d9d2f8d68e62f0ee9f7578264ff392c399667c3e31a4e8.css":{"logical_path":"application.css","mtime":"2018-05-04T17:06:27+01:00","size":155124,"digest":"a2c9ab4d32f94a4239d9d2f8d68e62f0ee9f7578264ff392c399667c3e31a4e8","integrity":"sha256-osmrTTL5SkI52dL41o5i8O6fdXgmT/OSw5lmfD4xpOg="},"application-03e7608078c0467e76a5f3e136b52445eb560e7f6cee8b567ca2601fbcfca02c.js":{"logical_path":"application.js","mtime":"2018-05-17T13:28:43+01:00","size":942468,"digest":"03e7608078c0467e76a5f3e136b52445eb560e7f6cee8b567ca2601fbcfca02c","integrity":"sha256-A+dggHjARn52pfPhNrUkRetWDn9s7otWfKJgH7z8oCw="},"application-03f28f91ccf8211ab0999feff0343b034a763a40b7472580739642834e0cee1e.css":{"logical_path":"application.css","mtime":"2018-05-06T07:44:43+01:00","size":155209,"digest":"03f28f91ccf8211ab0999feff0343b034a763a40b7472580739642834e0cee1e","integrity":"sha256-A/KPkcz4IRqwmZ/v8DQ7A0p2OkC3RyWAc5ZCg04M7h4="},"application-9fba308787d76f9e020771612ee8eba5f4600bf3ad7d4cfaccff6c65d4efef82.css":{"logical_path":"application.css","mtime":"2018-05-06T07:44:43+01:00","size":410825,"digest":"9fba308787d76f9e020771612ee8eba5f4600bf3ad7d4cfaccff6c65d4efef82","integrity":"sha256-n7owh4fXb54CB3FhLujrpfRgC/OtfUz6zP9sZdTv74I="},"application-67279d2d7fbcb23fa87225a1dfc0ead303858cf882cfd2c830d4f35b262115af.css":{"logical_path":"application.css","mtime":"2018-05-06T19:36:23+01:00","size":155234,"digest":"67279d2d7fbcb23fa87225a1dfc0ead303858cf882cfd2c830d4f35b262115af","integrity":"sha256-ZyedLX+8sj+ociWh38Dq0wOFjPiCz9LIMNTzWyYhFa8="},"samples/sample_events/borna-bevanda-377277-unsplash-ad16a54ca4101c38f55cb20ae4181487c0c8abb0f5f7194fb3de0b9cd1be13cd.jpg":{"logical_path":"samples/sample_events/borna-bevanda-377277-unsplash.jpg","mtime":"2018-05-09T09:21:27+01:00","size":2094206,"digest":"ad16a54ca4101c38f55cb20ae4181487c0c8abb0f5f7194fb3de0b9cd1be13cd","integrity":"sha256-rRalTKQQHDj1XLIK5BgUh8DIq7D19xlPs94LnNG+E80="},"samples/sample_groups/bass-music-guild-55bd438bb8837202e04855f077e9815beb52b00242247375542c469e998fa26a.jpg":{"logical_path":"samples/sample_groups/bass-music-guild.jpg","mtime":"2018-05-09T09:18:26+01:00","size":723387,"digest":"55bd438bb8837202e04855f077e9815beb52b00242247375542c469e998fa26a","integrity":"sha256-Vb1Di7iDcgLgSFXwd+mBW+tSsAJCJHN1VCxGnpmPomo="},"samples/sample_groups/bookshop-c734553638ed70a0de277412f4b3b93551c310b4fc953c5e7cc16cfb27c8732e.jpg":{"logical_path":"samples/sample_groups/bookshop.jpg","mtime":"2018-05-09T09:18:29+01:00","size":2996163,"digest":"c734553638ed70a0de277412f4b3b93551c310b4fc953c5e7cc16cfb27c8732e","integrity":"sha256-xzRVNjjtcKDeJ3QS9LO5NVHDELT8lTxefMFs+yfIcy4="},"samples/sample_groups/bruce-christianson-558321-unsplash-58bff7ef36626f82681ff87f8445f0dfca11df14d5a59353aa4bbb9f6d635ed8.jpg":{"logical_path":"samples/sample_groups/bruce-christianson-558321-unsplash.jpg","mtime":"2018-05-09T09:18:29+01:00","size":344019,"digest":"58bff7ef36626f82681ff87f8445f0dfca11df14d5a59353aa4bbb9f6d635ed8","integrity":"sha256-WL/37zZib4JoH/h/hEXw38oR3xTVpZNTqku7n21jXtg="},"samples/sample_groups/chillhop-a262d428b5dd361c2c5867601c0db60e76f63adf4f34e6b3637b8ce8d22cf8e3.jpg":{"logical_path":"samples/sample_groups/chillhop.jpg","mtime":"2018-05-09T09:18:29+01:00","size":436227,"digest":"a262d428b5dd361c2c5867601c0db60e76f63adf4f34e6b3637b8ce8d22cf8e3","integrity":"sha256-omLUKLXdNhwsWGdgHA22Dnb2Ot9PNOazY3uM6NIs+OM="},"samples/sample_groups/christin-hume-505815-unsplash-a145ea55ff8e966f0a511746530c8f1dce59146ebad2f5987d2aecf717d1a593.jpg":{"logical_path":"samples/sample_groups/christin-hume-505815-unsplash.jpg","mtime":"2018-05-09T09:18:29+01:00","size":309581,"digest":"a145ea55ff8e966f0a511746530c8f1dce59146ebad2f5987d2aecf717d1a593","integrity":"sha256-oUXqVf+Olm8KURdGUwyPHc5ZFG660vWYfSrs9xfRpZM="},"samples/sample_groups/clem-onojeghuo-143466-unsplash-0c65f1a587e83b04320a01ed683f535506b155e843dd0ed873e1fa3c0d42e34a.jpg":{"logical_path":"samples/sample_groups/clem-onojeghuo-143466-unsplash.jpg","mtime":"2018-05-09T09:18:29+01:00","size":643304,"digest":"0c65f1a587e83b04320a01ed683f535506b155e843dd0ed873e1fa3c0d42e34a","integrity":"sha256-DGXxpYfoOwQyCgHtaD9TVQaxVehD3Q7Yc+H6PA1C40o="},"samples/sample_groups/coding-1237c6604583a7eaffc93c4d8f185848b318bea746c617bed81637d2eae47aa8.jpg":{"logical_path":"samples/sample_groups/coding.jpg","mtime":"2018-05-09T09:18:30+01:00","size":4287403,"digest":"1237c6604583a7eaffc93c4d8f185848b318bea746c617bed81637d2eae47aa8","integrity":"sha256-EjfGYEWDp+r/yTxNjxhYSLMYvqdGxhe+2BY30urkeqg="},"samples/sample_groups/edm-b92af01154f8fb07f09427f71f165afa008c765cb5f67a5cc1aab9099d030b36.jpg":{"logical_path":"samples/sample_groups/edm.jpg","mtime":"2018-05-09T09:18:31+01:00","size":210464,"digest":"b92af01154f8fb07f09427f71f165afa008c765cb5f67a5cc1aab9099d030b36","integrity":"sha256-uSrwEVT4+wfwlCf3HxZa+gCMdly19npcwaq5CZ0DCzY="},"samples/sample_groups/emily-sea-198689-unsplash-af437c564038e5b22fe921c162ff6c36adb72e9ba0b0df3565b10b9e6363a580.jpg":{"logical_path":"samples/sample_groups/emily-sea-198689-unsplash.jpg","mtime":"2018-05-09T09:18:31+01:00","size":253406,"digest":"af437c564038e5b22fe921c162ff6c36adb72e9ba0b0df3565b10b9e6363a580","integrity":"sha256-r0N8VkA45bIv6SHBYv9sNq23LpugsN81ZbELnmNjpYA="},"samples/sample_groups/ingrid-hofstra-527954-unsplash-602149ba68519f7490f69a7b9e9dddc0687e21a67e97ea2efc01b0d97754b0df.jpg":{"logical_path":"samples/sample_groups/ingrid-hofstra-527954-unsplash.jpg","mtime":"2018-05-09T09:18:31+01:00","size":390750,"digest":"602149ba68519f7490f69a7b9e9dddc0687e21a67e97ea2efc01b0d97754b0df","integrity":"sha256-YCFJumhRn3SQ9pp7np3dwGh+IaZ+l+ou/AGw2XdUsN8="},"samples/sample_groups/plain-air-oregon-ca081dbf44166b734c538cd8d3e956998c6dd91ea486c95a86d5a23110fb3152.jpg":{"logical_path":"samples/sample_groups/plain-air-oregon.jpg","mtime":"2018-05-09T09:18:32+01:00","size":508201,"digest":"ca081dbf44166b734c538cd8d3e956998c6dd91ea486c95a86d5a23110fb3152","integrity":"sha256-yggdv0QWa3NMU4zY0+lWmYxt2R6khslahtWiMRD7MVI="},"samples/sample_groups/progressive-abeeb0370275d4109a250e65cf8bc63a037508b391fa0311887db54687a4d3b4.jpg":{"logical_path":"samples/sample_groups/progressive.jpg","mtime":"2018-05-09T09:18:32+01:00","size":254138,"digest":"abeeb0370275d4109a250e65cf8bc63a037508b391fa0311887db54687a4d3b4","integrity":"sha256-q+6wNwJ11BCaJQ5lz4vGOgN1CLOR+gMRiH21Roek07Q="},"samples/sample_groups/raveup-4c21c79980b29d5f17f6cbf4a977eb092ecbdefc4a29d6b3224e09363883c206.jpg":{"logical_path":"samples/sample_groups/raveup.jpg","mtime":"2018-05-09T09:18:32+01:00","size":746681,"digest":"4c21c79980b29d5f17f6cbf4a977eb092ecbdefc4a29d6b3224e09363883c206","integrity":"sha256-TCHHmYCynV8X9sv0qXfrCS7L3vxKKdazIk4JNjiDwgY="},"samples/sample_groups/sketching-fbf40836cad94e53e589db7d30f26b5b107c21dcfd5a5c3b1fc141d8eef7c23d.jpg":{"logical_path":"samples/sample_groups/sketching.jpg","mtime":"2018-05-09T09:18:32+01:00","size":337304,"digest":"fbf40836cad94e53e589db7d30f26b5b107c21dcfd5a5c3b1fc141d8eef7c23d","integrity":"sha256-+/QINsrZTlPlidt9MPJrWxB8Idz9Wlw7H8FB2O73wj0="},"samples/sample_groups/taras-shypka-424932-unsplash-7b296b814864dacbc54fe10ee42b53c6994caeb41fb4ff05bf804c26d57db564.jpg":{"logical_path":"samples/sample_groups/taras-shypka-424932-unsplash.jpg","mtime":"2018-05-09T09:18:32+01:00","size":371507,"digest":"7b296b814864dacbc54fe10ee42b53c6994caeb41fb4ff05bf804c26d57db564","integrity":"sha256-eylrgUhk2svFT+EO5CtTxplMrrQftP8Fv4BMJtV9tWQ="},"samples/sample_groups/tea-sketchers-88c490aa53bc544cc4a8097c567d8832a62ca4b5fac87e111dafab1ce2da4fbc.jpg":{"logical_path":"samples/sample_groups/tea-sketchers.jpg","mtime":"2018-05-09T09:18:32+01:00","size":855911,"digest":"88c490aa53bc544cc4a8097c567d8832a62ca4b5fac87e111dafab1ce2da4fbc","integrity":"sha256-iMSQqlO8VEzEqAl8Vn2IMqYspLX6yH4RHa+rHOLaT7w="},"samples/sample_groups/tenerife-edm-eb978c93ede0f3b75316049a14540db2070bc3bf58a6df1b0436b9325fdfa7c8.jpg":{"logical_path":"samples/sample_groups/tenerife-edm.jpg","mtime":"2018-05-09T09:18:32+01:00","size":590312,"digest":"eb978c93ede0f3b75316049a14540db2070bc3bf58a6df1b0436b9325fdfa7c8","integrity":"sha256-65eMk+3g87dTFgSaFFQNsgcLw79Ypt8bBDa5Ml/fp8g="},"samples/sample_groups/tenerife-5b615785a30eb88806d0091e95fa53bcd31f00b5000fcab1b17870748989a122.jpg":{"logical_path":"samples/sample_groups/tenerife.jpg","mtime":"2018-05-09T09:18:33+01:00","size":900359,"digest":"5b615785a30eb88806d0091e95fa53bcd31f00b5000fcab1b17870748989a122","integrity":"sha256-W2FXhaMOuIgG0AkelfpTvNMfALUAD8qxsXhwdImJoSI="},"samples/sample_groups/tomasz-wozniak-484204-unsplash-7171c240ea766b47054c895f5af478e5864197603d16f36934316758cd087eff.jpg":{"logical_path":"samples/sample_groups/tomasz-wozniak-484204-unsplash.jpg","mtime":"2018-05-09T09:18:34+01:00","size":611656,"digest":"7171c240ea766b47054c895f5af478e5864197603d16f36934316758cd087eff","integrity":"sha256-cXHCQOp2a0cFTIlfWvR45YZBl2A9FvNpNDFnWM0Ifv8="},"samples/sample_groups/watermarbling-5892e43e9eb8200f1c755432ccc7421a14c3f1ef6c8d7c4277845c0f57dc2001.jpg":{"logical_path":"samples/sample_groups/watermarbling.jpg","mtime":"2018-05-09T09:18:34+01:00","size":1178657,"digest":"5892e43e9eb8200f1c755432ccc7421a14c3f1ef6c8d7c4277845c0f57dc2001","integrity":"sha256-WJLkPp64IA8cdVQyzMdCGhTD8e9sjXxCd4RcD1fcIAE="},"application-806818e1c54ad2cb00ae7464ca4c4a470698396d1caf6a3fe4d270fdae2bbe19.css":{"logical_path":"application.css","mtime":"2018-05-10T21:47:08+01:00","size":156710,"digest":"806818e1c54ad2cb00ae7464ca4c4a470698396d1caf6a3fe4d270fdae2bbe19","integrity":"sha256-gGgY4cVK0ssArnRkykxKRwaYOW0cr2o/5NJw/a4rvhk="},"application-ffcf9cdb510f5c0c1fe3b96df64ca3d80e652de0844b71ac473872db478fa099.css":{"logical_path":"application.css","mtime":"2018-05-11T20:28:50+01:00","size":157038,"digest":"ffcf9cdb510f5c0c1fe3b96df64ca3d80e652de0844b71ac473872db478fa099","integrity":"sha256-/8+c21EPXAwf47lt9kyj2A5lLeCES3GsRzhy20ePoJk="},"application-c04a43803901d4e8bf9d2631b2ed5c78559d39df81814143d72090a8bef5ecbf.css":{"logical_path":"application.css","mtime":"2018-05-12T09:24:07+01:00","size":156953,"digest":"c04a43803901d4e8bf9d2631b2ed5c78559d39df81814143d72090a8bef5ecbf","integrity":"sha256-wEpDgDkB1Oi/nSYxsu1ceFWdOd+BgUFD1yCQqL717L8="},"application-1928eac6d401e2803b07d4ce335c8d12ec7478301a9b85f49edc6001483bf887.css":{"logical_path":"application.css","mtime":"2018-05-12T09:41:27+01:00","size":156949,"digest":"1928eac6d401e2803b07d4ce335c8d12ec7478301a9b85f49edc6001483bf887","integrity":"sha256-GSjqxtQB4oA7B9TOM1yNEux0eDAam4X0ntxgAUg7+Ic="},"application-221b76b8f32ad7f24262df85d425035d7d7a6c5a210129029fae2b31ff7a8249.css":{"logical_path":"application.css","mtime":"2018-05-12T10:09:35+01:00","size":157003,"digest":"221b76b8f32ad7f24262df85d425035d7d7a6c5a210129029fae2b31ff7a8249","integrity":"sha256-Iht2uPMq1/JCYt+F1CUDXX16bFohASkCn64rMf96gkk="},"application-083ddaeaae3a354c7976d68a68ab4266e477cdd3042ae2c90eb5ab0bb76764f2.css":{"logical_path":"application.css","mtime":"2018-05-12T10:19:05+01:00","size":156985,"digest":"083ddaeaae3a354c7976d68a68ab4266e477cdd3042ae2c90eb5ab0bb76764f2","integrity":"sha256-CD3a6q46NUx5dtaKaKtCZuR3zdMEKuLJDrWrC7dnZPI="},"application-05d7022033cc0103d4ae5b87de74f406887542e619e3f565f64383d822efde18.css":{"logical_path":"application.css","mtime":"2018-05-13T07:47:14+01:00","size":157186,"digest":"05d7022033cc0103d4ae5b87de74f406887542e619e3f565f64383d822efde18","integrity":"sha256-BdcCIDPMAQPUrluH3nT0Boh1QuYZ4/Vl9kOD2CLv3hg="},"application-f5934f731feca68a5fb5c978045d70e1934b32fcfe5e04415e1a6d00c4c94b4d.css":{"logical_path":"application.css","mtime":"2018-05-13T20:36:52+01:00","size":157254,"digest":"f5934f731feca68a5fb5c978045d70e1934b32fcfe5e04415e1a6d00c4c94b4d","integrity":"sha256-9ZNPcx/spopftcl4BF1w4ZNLMvz+XgRBXhptAMTJS00="},"application-c211185ae6e1d55e15c7db57c596e15787786eadd8d33ebcffab7508429dcb28.css":{"logical_path":"application.css","mtime":"2018-05-17T12:12:55+01:00","size":157375,"digest":"c211185ae6e1d55e15c7db57c596e15787786eadd8d33ebcffab7508429dcb28","integrity":"sha256-whEYWubh1V4Vx9tXxZbhV4d4bq3Y0z68/6t1CEKdyyg="},"application-7d0a77051bd13948f8b676d533440906188c02d8f99695c6f6488cca7ff5a557.css":{"logical_path":"application.css","mtime":"2018-05-17T13:28:43+01:00","size":157435,"digest":"7d0a77051bd13948f8b676d533440906188c02d8f99695c6f6488cca7ff5a557","integrity":"sha256-fQp3BRvROUj4tnbVM0QJBhiMAtj5lpXG9kiMyn/1pVc="},"application-598c36a9a8c8a8ea4414c6936b3c562aa1e0b08820ed66b63c8fdf3e3fbb0b51.css":{"logical_path":"application.css","mtime":"2018-05-17T13:33:50+01:00","size":157435,"digest":"598c36a9a8c8a8ea4414c6936b3c562aa1e0b08820ed66b63c8fdf3e3fbb0b51","integrity":"sha256-WYw2qajIqOpEFMaTazxWKqHgsIgg7Wa2PI/fPj+7C1E="},"application-f3aafde84474cbbca098e01aa22da301320e72d544ff088a2b7a365a1ae78faf.css":{"logical_path":"application.css","mtime":"2018-05-17T13:39:01+01:00","size":157422,"digest":"f3aafde84474cbbca098e01aa22da301320e72d544ff088a2b7a365a1ae78faf","integrity":"sha256-86r96ER0y7ygmOAaoi2jATIOctVE/wiKK3o2Whrnj68="},"application-64eb890f96e2a6a343ab2bc42257e74db0612946838ebbc4b92f2a5e8e0c4a9f.js":{"logical_path":"application.js","mtime":"2018-05-19T09:00:01+01:00","size":584682,"digest":"64eb890f96e2a6a343ab2bc42257e74db0612946838ebbc4b92f2a5e8e0c4a9f","integrity":"sha256-ZOuJD5bipqNDqyvEIlfnTbBhKUaDjrvEuS8qXo4MSp8="},"application-2d6cc907344551c25070f8233af9b501cfa328abc3a09c7ee50fbae751d9ea78.css":{"logical_path":"application.css","mtime":"2018-05-19T09:00:00+01:00","size":157697,"digest":"2d6cc907344551c25070f8233af9b501cfa328abc3a09c7ee50fbae751d9ea78","integrity":"sha256-LWzJBzRFUcJQcPgjOvm1Ac+jKKvDoJx+5Q+651HZ6ng="},"application-8d22a05db59259813375ae362279a26375ecc0ef6535bbddf6522665331d7b97.css":{"logical_path":"application.css","mtime":"2018-05-19T09:55:25+01:00","size":157689,"digest":"8d22a05db59259813375ae362279a26375ecc0ef6535bbddf6522665331d7b97","integrity":"sha256-jSKgXbWSWYEzda42InmiY3XswO9lNbvd9lImZTMde5c="},"application-3d32dbc695262a757b0fbc5c3bf50531ff0559f971d810818f39b0e684588767.css":{"logical_path":"application.css","mtime":"2018-05-19T11:25:01+01:00","size":157697,"digest":"3d32dbc695262a757b0fbc5c3bf50531ff0559f971d810818f39b0e684588767","integrity":"sha256-PTLbxpUmKnV7D7xcO/UFMf8FWflx2BCBjzmw5oRYh2c="},"application-7f90a0bc4e2961aa091725ac3a35e0ad612c742257bfd55c3780cf45eeb1f57d.css":{"logical_path":"application.css","mtime":"2018-05-19T11:25:38+01:00","size":157618,"digest":"7f90a0bc4e2961aa091725ac3a35e0ad612c742257bfd55c3780cf45eeb1f57d","integrity":"sha256-f5CgvE4pYaoJFyWsOjXgrWEsdCJXv9VcN4DPRe6x9X0="},"lazysizes-014b70259b7ccbedd5ad603d8edd93996b80fd47640c6f8353e29f427b82d9aa.js":{"logical_path":"lazysizes.js","mtime":"2018-05-19T19:47:26+01:00","size":8133,"digest":"014b70259b7ccbedd5ad603d8edd93996b80fd47640c6f8353e29f427b82d9aa","integrity":"sha256-AUtwJZt8y+3VrWA9jt2TmWuA/UdkDG+DU+KfQnuC2ao="},"application-baeeec15d12f7810ef4f54ed91ad25fe6103b1377eb37bd5d78731d7ab8d896c.js":{"logical_path":"application.js","mtime":"2018-05-19T19:47:26+01:00","size":584682,"digest":"baeeec15d12f7810ef4f54ed91ad25fe6103b1377eb37bd5d78731d7ab8d896c","integrity":"sha256-uu7sFdEveBDvT1Ttka0l/mEDsTd+s3vV14cx16uNiWw="},"lazysizes-b7e3b36049ed52a84ad33b8b24bbb0780921973e325ac91160a5f33c3de710e3.js":{"logical_path":"lazysizes.js","mtime":"2018-05-20T14:06:10+01:00","size":8150,"digest":"b7e3b36049ed52a84ad33b8b24bbb0780921973e325ac91160a5f33c3de710e3","integrity":"sha256-t+OzYEntUqhK0zuLJLuweAkhlz4yWskRYKXzPD3nEOM="},"application-19903d99d80288f7c2f11a24ce066072cd6427b0b99959999440a299da14884d.js":{"logical_path":"application.js","mtime":"2018-05-19T19:59:41+01:00","size":584699,"digest":"19903d99d80288f7c2f11a24ce066072cd6427b0b99959999440a299da14884d","integrity":"sha256-GZA9mdgCiPfC8RokzgZgcs1kJ7C5mVmZlECimdoUiE0="},"application-160f741bcd4bbfd95837da986cf3be96917a2669aedd7c272b009b0d90e50f38.css":{"logical_path":"application.css","mtime":"2018-05-19T20:10:16+01:00","size":157618,"digest":"160f741bcd4bbfd95837da986cf3be96917a2669aedd7c272b009b0d90e50f38","integrity":"sha256-Fg90G81Lv9lYN9qYbPO+lpF6Jmmu3XwnKwCbDZDlDzg="},"application-36481e3721761962dacfd8d8c1917d7bac696bfe3ba6671fc4de784bcb607b33.js":{"logical_path":"application.js","mtime":"2018-05-20T13:58:02+01:00","size":584589,"digest":"36481e3721761962dacfd8d8c1917d7bac696bfe3ba6671fc4de784bcb607b33","integrity":"sha256-NkgeNyF2GWLaz9jYwZF9e6xpa/47pmcfxN54S8tgezM="},"application-4574541c3e0ccbb479c6b930c9bebe36565f0db0479f2c16728b742d909b734a.js":{"logical_path":"application.js","mtime":"2018-06-08T09:20:14+01:00","size":584606,"digest":"4574541c3e0ccbb479c6b930c9bebe36565f0db0479f2c16728b742d909b734a","integrity":"sha256-RXRUHD4My7R5xrkwyb6+NlZfDbBHnywWcot0LZCbc0o="},"samples/sample_groups/alp-allen-altiner-352232-unsplash-c2d43e0c747321549890df1b31e1d44bdc805b828aa21479ce00d5cee29d35ea.jpg":{"logical_path":"samples/sample_groups/alp-allen-altiner-352232-unsplash.jpg","mtime":"2018-05-27T14:14:52+01:00","size":4105952,"digest":"c2d43e0c747321549890df1b31e1d44bdc805b828aa21479ce00d5cee29d35ea","integrity":"sha256-wtQ+DHRzIVSYkN8bMeHUS9yAW4KKohR5zgDVzuKdNeo="},"samples/sample_groups/chase-clark-509092-unsplash-f0a33543e15ddeb86ed13045faf19390fe197371d4d35f14297527473f15f8ae.jpg":{"logical_path":"samples/sample_groups/chase-clark-509092-unsplash.jpg","mtime":"2018-05-27T14:14:56+01:00","size":4036790,"digest":"f0a33543e15ddeb86ed13045faf19390fe197371d4d35f14297527473f15f8ae","integrity":"sha256-8KM1Q+Fd3rhu0TBF+vGTkP4Zc3HU018UKXUnRz8V+K4="},"samples/sample_groups/chris-ried-512801-unsplash-9dc67be4326796aeeff2e1642028be70b71aaea8764a67a26c6768dcc1b44955.jpg":{"logical_path":"samples/sample_groups/chris-ried-512801-unsplash.jpg","mtime":"2018-05-27T14:14:57+01:00","size":3606568,"digest":"9dc67be4326796aeeff2e1642028be70b71aaea8764a67a26c6768dcc1b44955","integrity":"sha256-ncZ75DJnlq7v8uFkICi+cLcarqh2SmeibGdo3MG0SVU="},"samples/sample_groups/lin-mei-159435-unsplash-b6dad05147162107c1518ae3ade1db190facc365b845de8febe55e4b229ccb1b.jpg":{"logical_path":"samples/sample_groups/lin-mei-159435-unsplash.jpg","mtime":"2018-05-27T14:14:57+01:00","size":1080317,"digest":"b6dad05147162107c1518ae3ade1db190facc365b845de8febe55e4b229ccb1b","integrity":"sha256-ttrQUUcWIQfBUYrjreHbGQ+sw2W4Rd6P6+VeSyKcyxs="},"samples/sample_groups/mpho-mojapelo-127562-unsplash-1128423da8c51adfe26648b15d51c78371f0d73e05768f0d8e1a4ef0ff574658.jpg":{"logical_path":"samples/sample_groups/mpho-mojapelo-127562-unsplash.jpg","mtime":"2018-05-27T14:14:57+01:00","size":538244,"digest":"1128423da8c51adfe26648b15d51c78371f0d73e05768f0d8e1a4ef0ff574658","integrity":"sha256-EShCPajFGt/iZkixXVHHg3Hw1z4Fdo8NjhpO8P9XRlg="},"samples/sample_groups/sergio-cavalcanti-350268-unsplash-1b9e355e5893d246d36d1d77112aaae2e50590c2737cdc0397d76094b9d8cb50.jpg":{"logical_path":"samples/sample_groups/sergio-cavalcanti-350268-unsplash.jpg","mtime":"2018-05-27T14:14:59+01:00","size":3249150,"digest":"1b9e355e5893d246d36d1d77112aaae2e50590c2737cdc0397d76094b9d8cb50","integrity":"sha256-G541XliT0kbTbR13ESqq4uUFkMJzfNwDl9dglLnYy1A="},"application-e19346497f84231eb92923234683995ed73d6b5977577bab2b850c2bf3fde383.css":{"logical_path":"application.css","mtime":"2018-06-01T07:30:31+01:00","size":158803,"digest":"e19346497f84231eb92923234683995ed73d6b5977577bab2b850c2bf3fde383","integrity":"sha256-4ZNGSX+EIx65KSMjRoOZXtc9a1l3V3urK4UMK/P944M="},"lazysizes-0622dd876a33cdbe06d2c1c01c3e3b9a8ca531f3c3c3ec27639622d535ceeec0.js":{"logical_path":"lazysizes.js","mtime":"2018-05-20T14:06:10+01:00","size":20736,"digest":"0622dd876a33cdbe06d2c1c01c3e3b9a8ca531f3c3c3ec27639622d535ceeec0","integrity":"sha256-BiLdh2ozzb4G0sHAHD47moylMfPDw+wnY5Yi1TXO7sA="},"application-18808b0ff8b535ea7ace35960762a766605a75e541a27f6bf8bcbf1737c88fef.js":{"logical_path":"application.js","mtime":"2018-06-02T22:19:25+01:00","size":963204,"digest":"18808b0ff8b535ea7ace35960762a766605a75e541a27f6bf8bcbf1737c88fef","integrity":"sha256-GICLD/i1Nep6zjWWB2KnZmBadeVBon9r+Ly/FzfIj+8="},"application-e79a992fbfc523bcda79ca802676fdb92ec965db3231a30ca591d518b6ab9c93.css":{"logical_path":"application.css","mtime":"2018-06-02T22:19:25+01:00","size":158891,"digest":"e79a992fbfc523bcda79ca802676fdb92ec965db3231a30ca591d518b6ab9c93","integrity":"sha256-55qZL7/FI7zaecqAJnb9uS7JZdsyMaMMpZHVGLarnJM="},"application-88aa188a2ca2dbeba5182e28b970898bf0ea68a58d1f9af200562d6dd917b59d.css":{"logical_path":"application.css","mtime":"2018-06-08T09:20:14+01:00","size":159082,"digest":"88aa188a2ca2dbeba5182e28b970898bf0ea68a58d1f9af200562d6dd917b59d","integrity":"sha256-iKoYiiyi2+ulGC4ouXCJi/DqaKWNH5ryAFYtbdkXtZ0="},"application-aa9247e3593406fdb3578f55537d49302ce1440ae5b3be45f0fb0c986e14cf1a.css":{"logical_path":"application.css","mtime":"2018-06-10T21:28:24+01:00","size":159057,"digest":"aa9247e3593406fdb3578f55537d49302ce1440ae5b3be45f0fb0c986e14cf1a","integrity":"sha256-qpJH41k0Bv2zV49VU31JMCzhRArls75F8PsMmG4Uzxo="},"application-dcf2929eec9d8a6da77dc7e2918fd02f5204e9572f75069d7b2ff81058056c42.js":{"logical_path":"application.js","mtime":"2018-07-07T18:04:12+01:00","size":594487,"digest":"dcf2929eec9d8a6da77dc7e2918fd02f5204e9572f75069d7b2ff81058056c42","integrity":"sha256-3PKSnuydim2nfcfikY/QL1IE6VcvdQadey/4EFgFbEI="},"application-b113d10717163da98e962d2022820cf92cd40f6de9a1d5755335fd352b72ab54.css":{"logical_path":"application.css","mtime":"2018-06-14T07:10:17+01:00","size":159086,"digest":"b113d10717163da98e962d2022820cf92cd40f6de9a1d5755335fd352b72ab54","integrity":"sha256-sRPRBxcWPamOli0gIoIM+SzUD23podV1UzX9NStyq1Q="},"application-186d7910ad29451ecc1767941a747a592b4d865d5082c242a9a19a8988e35ab4.css":{"logical_path":"application.css","mtime":"2018-06-14T07:19:25+01:00","size":159123,"digest":"186d7910ad29451ecc1767941a747a592b4d865d5082c242a9a19a8988e35ab4","integrity":"sha256-GG15EK0pRR7MF2eUGnR6WStNhl1QgsJCqaGaiYjjWrQ="},"application-72b85be22ce44752ae3223277f179126057d283d85319b63a0884340919c030f.css":{"logical_path":"application.css","mtime":"2018-06-15T08:41:07+01:00","size":159163,"digest":"72b85be22ce44752ae3223277f179126057d283d85319b63a0884340919c030f","integrity":"sha256-crhb4izkR1KuMiMnfxeRJgV9KD2FMZtjoIhDQJGcAw8="},"application-24eb5a6f6907cd6d51867aa32029374bceb5970352f8dd6a5d6e78467734ae3e.css":{"logical_path":"application.css","mtime":"2018-06-15T22:21:52+01:00","size":159198,"digest":"24eb5a6f6907cd6d51867aa32029374bceb5970352f8dd6a5d6e78467734ae3e","integrity":"sha256-JOtab2kHzW1RhnqjICk3S861lwNS+N1qXW54Rnc0rj4="},"application-a2e3a3058977a9d4a1ac506f6f08f100f5e4017b09f4f9a218990e5335105edf.css":{"logical_path":"application.css","mtime":"2018-06-16T07:38:09+01:00","size":159216,"digest":"a2e3a3058977a9d4a1ac506f6f08f100f5e4017b09f4f9a218990e5335105edf","integrity":"sha256-ouOjBYl3qdShrFBvbwjxAPXkAXsJ9PmiGJkOUzUQXt8="},"application-b7c3c85c7fba549c4def95149648e6a55076257f8d519cd85ca6b4f32e2e1e98.css":{"logical_path":"application.css","mtime":"2018-06-16T07:50:20+01:00","size":159155,"digest":"b7c3c85c7fba549c4def95149648e6a55076257f8d519cd85ca6b4f32e2e1e98","integrity":"sha256-t8PIXH+6VJxN75UUlkjmpVB2JX+NUZzYXKa08y4uHpg="},"application-87d877790aacaca40a264cf31b69790bcb5db42f33585e3a886074b1136a9a77.css":{"logical_path":"application.css","mtime":"2018-06-16T08:00:29+01:00","size":159150,"digest":"87d877790aacaca40a264cf31b69790bcb5db42f33585e3a886074b1136a9a77","integrity":"sha256-h9h3eQqsrKQKJkzzG2l5C8tdtC8zWF46iGB0sRNqmnc="},"application-c671f2fc63da707e040772065f6ffd809eea2e6aa96d2deda2fb266c2aefcb54.css":{"logical_path":"application.css","mtime":"2018-06-20T09:04:33+01:00","size":159221,"digest":"c671f2fc63da707e040772065f6ffd809eea2e6aa96d2deda2fb266c2aefcb54","integrity":"sha256-xnHy/GPacH4EB3IGX2/9gJ7qLmqpbS3tovsmbCrvy1Q="},"application-2fe4a7c86314792b299f5abd7f92c4253a36a3a77936c54fc16d6b46197f0a24.css":{"logical_path":"application.css","mtime":"2018-06-29T07:35:30+01:00","size":159365,"digest":"2fe4a7c86314792b299f5abd7f92c4253a36a3a77936c54fc16d6b46197f0a24","integrity":"sha256-L+SnyGMUeSspn1q9f5LEJTo2o6d5NsVPwW1rRhl/CiQ="},"application-e0eff4e3286ed604481e3aa27b12f77337ede71867321467e375b2453681614b.css":{"logical_path":"application.css","mtime":"2018-07-01T10:04:34+01:00","size":159654,"digest":"e0eff4e3286ed604481e3aa27b12f77337ede71867321467e375b2453681614b","integrity":"sha256-4O/04yhu1gRIHjqiexL3czft5xhnMhRn43WyRTaBYUs="},"application-c0280ecfdd1d4025aa1416f7f02154aec3294535be9defd37a73db1bd3bc48ae.css":{"logical_path":"application.css","mtime":"2018-07-01T10:48:15+01:00","size":159710,"digest":"c0280ecfdd1d4025aa1416f7f02154aec3294535be9defd37a73db1bd3bc48ae","integrity":"sha256-wCgOz90dQCWqFBb38CFUrsMpRTW+ne/TenPbG9O8SK4="},"application-d48cc49e57a82f616d7edbe2b5b63cb77e453b2d81e41aca1ddf7bec127e6801.css":{"logical_path":"application.css","mtime":"2018-07-01T12:30:36+01:00","size":159710,"digest":"d48cc49e57a82f616d7edbe2b5b63cb77e453b2d81e41aca1ddf7bec127e6801","integrity":"sha256-1IzEnleoL2FtftvitbY8t35FOy2B5BrKHd977BJ+aAE="},"application-f573c5bffb8be054fd53d1e7ce719d110701630885cfa217597cc9f7940a1369.css":{"logical_path":"application.css","mtime":"2018-07-01T12:33:39+01:00","size":159712,"digest":"f573c5bffb8be054fd53d1e7ce719d110701630885cfa217597cc9f7940a1369","integrity":"sha256-9XPFv/uL4FT9U9HnznGdEQcBYwiFz6IXWXzJ95QKE2k="},"application-975111a244b94f244d8668bbed1b35d14df827425ced7c1298d895fc3f55abc8.css":{"logical_path":"application.css","mtime":"2018-07-01T12:37:54+01:00","size":159725,"digest":"975111a244b94f244d8668bbed1b35d14df827425ced7c1298d895fc3f55abc8","integrity":"sha256-l1ERokS5TyRNhmi77Rs10U34J0Jc7XwSmNiV/D9Vq8g="},"application-79a3210ae2b71f18473976c28e84a586ef0375b9ae2b97318323f9110471e39e.css":{"logical_path":"application.css","mtime":"2018-07-02T11:48:29+01:00","size":159888,"digest":"79a3210ae2b71f18473976c28e84a586ef0375b9ae2b97318323f9110471e39e","integrity":"sha256-eaMhCuK3HxhHOXbCjoSlhu8DdbmuK5cxgyP5EQRx454="},"application-a045471ae51357f0281900c8d6979b993456e353b4d915a105efa9e59417641e.css":{"logical_path":"application.css","mtime":"2018-07-02T17:07:06+01:00","size":159980,"digest":"a045471ae51357f0281900c8d6979b993456e353b4d915a105efa9e59417641e","integrity":"sha256-oEVHGuUTV/AoGQDI1pebmTRW41O02RWhBe+p5ZQXZB4="},"svgs/if_fireworks_2_811451-252dd5302a344063beaa1a3e400aa84b7a54937cca8c7e4d18fe19ad505f8dff.svg":{"logical_path":"svgs/if_fireworks_2_811451.svg","mtime":"2018-07-08T17:49:58+01:00","size":7519,"digest":"252dd5302a344063beaa1a3e400aa84b7a54937cca8c7e4d18fe19ad505f8dff","integrity":"sha256-JS3VMCo0QGO+qho+QAqoS3pUk3zKjH5NGP4ZrVBfjf8="},"application-0667fa855b3dc83ebf7974e8e53bc911d978b0244e6bca5a4b9cc8f0e36a2e28.js":{"logical_path":"application.js","mtime":"2018-07-07T18:04:12+01:00","size":973130,"digest":"0667fa855b3dc83ebf7974e8e53bc911d978b0244e6bca5a4b9cc8f0e36a2e28","integrity":"sha256-Bmf6hVs9yD6/eXTo5TvJEdl4sCROa8paS5zI8ONqLig="},"application-c1729ec04a4c485d7d4fc57f369257eb088a5bef8330e8e5429704e195de4bdb.css":{"logical_path":"application.css","mtime":"2018-07-07T18:04:12+01:00","size":160002,"digest":"c1729ec04a4c485d7d4fc57f369257eb088a5bef8330e8e5429704e195de4bdb","integrity":"sha256-wXKewEpMSF19T8V/NpJX6wiKW++DMOjlQpcE4ZXeS9s="},"application-e8eee8204ca82f7863368188f7e448c5bcfb4b58a79e5024f6118f5e44a940b6.js":{"logical_path":"application.js","mtime":"2018-07-08T13:50:29+01:00","size":943239,"digest":"e8eee8204ca82f7863368188f7e448c5bcfb4b58a79e5024f6118f5e44a940b6","integrity":"sha256-6O7oIEyoL3hjNoGI9+RIxbz7S1innlAk9hGPXkSpQLY="},"application-b3383254d83da8efe5bce81020d6a6c3309d8d76bc5d1cf5ae148218d88f2b51.css":{"logical_path":"application.css","mtime":"2018-07-07T18:04:12+01:00","size":418937,"digest":"b3383254d83da8efe5bce81020d6a6c3309d8d76bc5d1cf5ae148218d88f2b51","integrity":"sha256-szgyVNg9qO/lvOgQINamwzCdjXa8XRz1rhSCGNiPK1E="},"application-2df40e1e5512870152c9e127eabda96c1e446086a2da1e8bf710a6b332818fd5.js":{"logical_path":"application.js","mtime":"2018-07-08T06:22:46+01:00","size":583643,"digest":"2df40e1e5512870152c9e127eabda96c1e446086a2da1e8bf710a6b332818fd5","integrity":"sha256-LfQOHlUShwFSyeEn6r2pbB5EYIai2h6L9xCmszKBj9U="},"application-58dd3244dacd3530af402cf61d03186016ba1295389c268f45efda710b1b2086.css":{"logical_path":"application.css","mtime":"2018-07-08T07:57:56+01:00","size":160182,"digest":"58dd3244dacd3530af402cf61d03186016ba1295389c268f45efda710b1b2086","integrity":"sha256-WN0yRNrNNTCvQCz2HQMYYBa6EpU4nCaPRe/acQsbIIY="},"application-395c5288b099fc822c76892963cc99f4a12ae1ad8a969317d5638d6910e81910.css":{"logical_path":"application.css","mtime":"2018-07-08T13:50:29+01:00","size":419509,"digest":"395c5288b099fc822c76892963cc99f4a12ae1ad8a969317d5638d6910e81910","integrity":"sha256-OVxSiLCZ/IIsdokpY8yZ9KEq4a2KlpMX1WONaRDoGRA="},"application-8758e92bd7a236e476be290ecdf18d36079f59ba4ece0e72ab64b9544d89da9a.css":{"logical_path":"application.css","mtime":"2018-07-08T13:50:29+01:00","size":160223,"digest":"8758e92bd7a236e476be290ecdf18d36079f59ba4ece0e72ab64b9544d89da9a","integrity":"sha256-h1jpK9eiNuR2vikOzfGNNgefWbpOzg5yq2S5VE2J2po="},"application-67e35435666c566b90da3f34164cb822ef9a93d07fb504d042509921e00506e0.css":{"logical_path":"application.css","mtime":"2018-07-11T17:27:48+01:00","size":160271,"digest":"67e35435666c566b90da3f34164cb822ef9a93d07fb504d042509921e00506e0","integrity":"sha256-Z+NUNWZsVmuQ2j80Fky4Iu+ak9B/tQTQQlCZIeAFBuA="},"application-e0648964d29fbbdfe3375307de5d830f5ba2e730137444c59d9daa76656efb7f.js":{"logical_path":"application.js","mtime":"2018-07-19T11:19:34+01:00","size":583774,"digest":"e0648964d29fbbdfe3375307de5d830f5ba2e730137444c59d9daa76656efb7f","integrity":"sha256-4GSJZNKfu9/jN1MH3l2DD1ui5zATdETFnZ2qdmVu+38="},"application-de0d4385f41f7460d0fcae550fd25f1e6c794ae8ffd707a4a3bfe9745781225f.css":{"logical_path":"application.css","mtime":"2018-07-16T12:08:24+01:00","size":160316,"digest":"de0d4385f41f7460d0fcae550fd25f1e6c794ae8ffd707a4a3bfe9745781225f","integrity":"sha256-3g1DhfQfdGDQ/K5VD9JfHmx5Suj/1weko7/pdFeBIl8="},"application-6aad657850f93f14c537c26767f5a24ef6bc00eb41f46a71b407890cb50cc593.css":{"logical_path":"application.css","mtime":"2018-07-16T13:13:37+01:00","size":160520,"digest":"6aad657850f93f14c537c26767f5a24ef6bc00eb41f46a71b407890cb50cc593","integrity":"sha256-aq1leFD5PxTFN8JnZ/WiTva8AOtB9GpxtAeJDLUMxZM="},"application-61f219421efdf3a5c49cf9adb5765b931246a861aef406a735b6565f00f8254a.css":{"logical_path":"application.css","mtime":"2018-07-16T13:44:50+01:00","size":160521,"digest":"61f219421efdf3a5c49cf9adb5765b931246a861aef406a735b6565f00f8254a","integrity":"sha256-YfIZQh7986XEnPmttXZbkxJGqGGu9AanNbZWXwD4JUo="},"application-2179c7ca432fc29c7313a01bb526f7d8c25fc67e09fe5ca16a311495fed69c24.css":{"logical_path":"application.css","mtime":"2018-07-16T19:56:50+01:00","size":160547,"digest":"2179c7ca432fc29c7313a01bb526f7d8c25fc67e09fe5ca16a311495fed69c24","integrity":"sha256-IXnHykMvwpxzE6AbtSb32MJfxn4J/lyhajEUlf7WnCQ="},"application-646ba9a5acd360712b7c4f293b856150890ef9c8b45c45d2aa1c3840211b4eda.css":{"logical_path":"application.css","mtime":"2018-07-16T22:52:56+01:00","size":161272,"digest":"646ba9a5acd360712b7c4f293b856150890ef9c8b45c45d2aa1c3840211b4eda","integrity":"sha256-ZGuppazTYHErfE8pO4VhUIkO+ci0XEXSqhw4QCEbTto="},"application-5e8c6ca1fc3139bf520fe83e2682fae30e6de94140577d31867e6385d08a38c9.css":{"logical_path":"application.css","mtime":"2018-07-16T23:00:51+01:00","size":161054,"digest":"5e8c6ca1fc3139bf520fe83e2682fae30e6de94140577d31867e6385d08a38c9","integrity":"sha256-XoxsofwxOb9SD+g+JoL64w5t6UFAV30xhn5jhdCKOMk="},"application-57093e3e88b06794912b531b4d2a709bb6bfbc0e090a2e179fc0c68976b2b035.css":{"logical_path":"application.css","mtime":"2018-07-18T21:05:17+01:00","size":161091,"digest":"57093e3e88b06794912b531b4d2a709bb6bfbc0e090a2e179fc0c68976b2b035","integrity":"sha256-Vwk+PoiwZ5SRK1MbTSpwm7a/vA4JCi4Xn8DGiXaysDU="},"application-452e46ea84af39f6029cdf6dbe294d889007cb94939feb4ef68c0a971a940ee3.css":{"logical_path":"application.css","mtime":"2018-07-18T21:20:30+01:00","size":161133,"digest":"452e46ea84af39f6029cdf6dbe294d889007cb94939feb4ef68c0a971a940ee3","integrity":"sha256-RS5G6oSvOfYCnN9tvilNiJAHy5STn+tO9owKlxqUDuM="},"application-e1a8d82884ab3448b9104eeeecc183102b145f7c37b601a098bf6cd233db039c.css":{"logical_path":"application.css","mtime":"2018-07-18T21:37:35+01:00","size":161158,"digest":"e1a8d82884ab3448b9104eeeecc183102b145f7c37b601a098bf6cd233db039c","integrity":"sha256-4ajYKISrNEi5EE7u7MGDECsUX3w3tgGgmL9s0jPbA5w="},"application-8650135c8e6568fbdab37e8061253f40fe6607e36084694560606c2ea3c19e32.css":{"logical_path":"application.css","mtime":"2018-07-18T21:44:48+01:00","size":161158,"digest":"8650135c8e6568fbdab37e8061253f40fe6607e36084694560606c2ea3c19e32","integrity":"sha256-hlATXI5laPvas36AYSU/QP5mB+NghGlFYGBsLqPBnjI="},"application-5e776e15daec6c63d615e1ceccdc6a4bce76263af7c0796192f43c7608b469c4.css":{"logical_path":"application.css","mtime":"2018-07-19T11:22:09+01:00","size":161000,"digest":"5e776e15daec6c63d615e1ceccdc6a4bce76263af7c0796192f43c7608b469c4","integrity":"sha256-XnduFdrsbGPWFeHOzNxqS852Jjr3wHlhkvQ8dgi0acQ="}},"assets":{"layers-2x.png":"layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png","layers.png":"layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png","marker-icon-2x.png":"marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png","marker-icon.png":"marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png","marker-shadow.png":"marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png","application.js":"application-e0648964d29fbbdfe3375307de5d830f5ba2e730137444c59d9daa76656efb7f.js","leaflet-src.js.map":"leaflet-src.js-6eed528b5678ee4f34b8be267a8da5d14734d58d56baeea6a31e9819e6630775.map","application.css":"application-5e776e15daec6c63d615e1ceccdc6a4bce76263af7c0796192f43c7608b469c4.css","leaflet/layers-2x.png":"leaflet/layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png","leaflet/layers.png":"leaflet/layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png","leaflet/marker-icon-2x-violet.png":"leaflet/marker-icon-2x-violet-d2d4278dacf3fea3d5e9fc2fffbba8a840bc1310cc1457198426e2c11feb4e44.png","leaflet/marker-icon-2x.png":"leaflet/marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png","leaflet/marker-icon-violet.png":"leaflet/marker-icon-violet-6892da1a4188e5ccf68e67aae2a94fbae14ad75915b31555935130ae4fcc4145.png","leaflet/marker-icon.png":"leaflet/marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png","leaflet/marker-shadow.png":"leaflet/marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png","icons/if_icon-calendar_211633.svg":"icons/if_icon-calendar_211633-96d8b4b40a7bc7af5f5821257083b42a158986c679e5aa3144c1fb5c267f757e.svg","icons/if_icon-ios7-location-outline_211766.svg":"icons/if_icon-ios7-location-outline_211766-2185392dfb3feb3ac53b72a00302af749bcc5ecae6a08bf0a32eb222dc4afc70.svg","icons/if_icon-link_211853.svg":"icons/if_icon-link_211853-837f4c6d43b685637636c5118f2f021e586e69457cc270433e4278cb1b482cf8.svg","samples/adam-whitlock-270558-unsplash.jpg":"samples/adam-whitlock-270558-unsplash-afcf2f17063f371ec0ad495170db234a9b7dc4ab793c648025dceabd39b39047.jpg","samples/cristina-cerda-43101-unsplash.jpg":"samples/cristina-cerda-43101-unsplash-f65c2cb6817ac07da16d94e94ab217006aeb23cb918d824075bbbd00fbe6c115.jpg","samples/sample_groups/bass-music-guild.jpg":"samples/sample_groups/bass-music-guild-55bd438bb8837202e04855f077e9815beb52b00242247375542c469e998fa26a.jpg","samples/sample_groups/bookshop.jpg":"samples/sample_groups/bookshop-c734553638ed70a0de277412f4b3b93551c310b4fc953c5e7cc16cfb27c8732e.jpg","samples/sample_groups/bruce-christianson-558321-unsplash.jpg":"samples/sample_groups/bruce-christianson-558321-unsplash-58bff7ef36626f82681ff87f8445f0dfca11df14d5a59353aa4bbb9f6d635ed8.jpg","samples/sample_groups/chillhop.jpg":"samples/sample_groups/chillhop-a262d428b5dd361c2c5867601c0db60e76f63adf4f34e6b3637b8ce8d22cf8e3.jpg","samples/sample_groups/christin-hume-505815-unsplash.jpg":"samples/sample_groups/christin-hume-505815-unsplash-a145ea55ff8e966f0a511746530c8f1dce59146ebad2f5987d2aecf717d1a593.jpg","samples/sample_groups/clem-onojeghuo-143466-unsplash.jpg":"samples/sample_groups/clem-onojeghuo-143466-unsplash-0c65f1a587e83b04320a01ed683f535506b155e843dd0ed873e1fa3c0d42e34a.jpg","samples/sample_groups/coding.jpg":"samples/sample_groups/coding-1237c6604583a7eaffc93c4d8f185848b318bea746c617bed81637d2eae47aa8.jpg","samples/sample_groups/edm.jpg":"samples/sample_groups/edm-b92af01154f8fb07f09427f71f165afa008c765cb5f67a5cc1aab9099d030b36.jpg","samples/sample_groups/emily-sea-198689-unsplash.jpg":"samples/sample_groups/emily-sea-198689-unsplash-af437c564038e5b22fe921c162ff6c36adb72e9ba0b0df3565b10b9e6363a580.jpg","samples/sample_groups/ingrid-hofstra-527954-unsplash.jpg":"samples/sample_groups/ingrid-hofstra-527954-unsplash-602149ba68519f7490f69a7b9e9dddc0687e21a67e97ea2efc01b0d97754b0df.jpg","samples/sample_groups/plain-air-oregon.jpg":"samples/sample_groups/plain-air-oregon-ca081dbf44166b734c538cd8d3e956998c6dd91ea486c95a86d5a23110fb3152.jpg","samples/sample_groups/progressive.jpg":"samples/sample_groups/progressive-abeeb0370275d4109a250e65cf8bc63a037508b391fa0311887db54687a4d3b4.jpg","samples/sample_groups/raveup.jpg":"samples/sample_groups/raveup-4c21c79980b29d5f17f6cbf4a977eb092ecbdefc4a29d6b3224e09363883c206.jpg","samples/sample_groups/sketching.jpg":"samples/sample_groups/sketching-fbf40836cad94e53e589db7d30f26b5b107c21dcfd5a5c3b1fc141d8eef7c23d.jpg","samples/sample_groups/taras-shypka-424932-unsplash.jpg":"samples/sample_groups/taras-shypka-424932-unsplash-7b296b814864dacbc54fe10ee42b53c6994caeb41fb4ff05bf804c26d57db564.jpg","samples/sample_groups/tea-sketchers.jpg":"samples/sample_groups/tea-sketchers-88c490aa53bc544cc4a8097c567d8832a62ca4b5fac87e111dafab1ce2da4fbc.jpg","samples/sample_groups/tenerife-edm.jpg":"samples/sample_groups/tenerife-edm-eb978c93ede0f3b75316049a14540db2070bc3bf58a6df1b0436b9325fdfa7c8.jpg","samples/sample_groups/tenerife.jpg":"samples/sample_groups/tenerife-5b615785a30eb88806d0091e95fa53bcd31f00b5000fcab1b17870748989a122.jpg","samples/sample_groups/tomasz-wozniak-484204-unsplash.jpg":"samples/sample_groups/tomasz-wozniak-484204-unsplash-7171c240ea766b47054c895f5af478e5864197603d16f36934316758cd087eff.jpg","samples/sample_groups/watermarbling.jpg":"samples/sample_groups/watermarbling-5892e43e9eb8200f1c755432ccc7421a14c3f1ef6c8d7c4277845c0f57dc2001.jpg","samples/sample_events/borna-bevanda-377277-unsplash.jpg":"samples/sample_events/borna-bevanda-377277-unsplash-ad16a54ca4101c38f55cb20ae4181487c0c8abb0f5f7194fb3de0b9cd1be13cd.jpg","lazysizes.js":"lazysizes-b7e3b36049ed52a84ad33b8b24bbb0780921973e325ac91160a5f33c3de710e3.js","samples/sample_groups/alp-allen-altiner-352232-unsplash.jpg":"samples/sample_groups/alp-allen-altiner-352232-unsplash-c2d43e0c747321549890df1b31e1d44bdc805b828aa21479ce00d5cee29d35ea.jpg","samples/sample_groups/chase-clark-509092-unsplash.jpg":"samples/sample_groups/chase-clark-509092-unsplash-f0a33543e15ddeb86ed13045faf19390fe197371d4d35f14297527473f15f8ae.jpg","samples/sample_groups/chris-ried-512801-unsplash.jpg":"samples/sample_groups/chris-ried-512801-unsplash-9dc67be4326796aeeff2e1642028be70b71aaea8764a67a26c6768dcc1b44955.jpg","samples/sample_groups/lin-mei-159435-unsplash.jpg":"samples/sample_groups/lin-mei-159435-unsplash-b6dad05147162107c1518ae3ade1db190facc365b845de8febe55e4b229ccb1b.jpg","samples/sample_groups/mpho-mojapelo-127562-unsplash.jpg":"samples/sample_groups/mpho-mojapelo-127562-unsplash-1128423da8c51adfe26648b15d51c78371f0d73e05768f0d8e1a4ef0ff574658.jpg","samples/sample_groups/sergio-cavalcanti-350268-unsplash.jpg":"samples/sample_groups/sergio-cavalcanti-350268-unsplash-1b9e355e5893d246d36d1d77112aaae2e50590c2737cdc0397d76094b9d8cb50.jpg","svgs/if_fireworks_2_811451.svg":"svgs/if_fireworks_2_811451-252dd5302a344063beaa1a3e400aa84b7a54937cca8c7e4d18fe19ad505f8dff.svg"}} \ No newline at end of file +{"files":{"layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png":{"logical_path":"layers-2x.png","mtime":"2018-02-17T21:20:08+00:00","size":1259,"digest":"066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf","integrity":"sha256-Bm2sqFDY/77wB68AsG6sABVyje4nnFHzy2xxbffELt8="},"layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png":{"logical_path":"layers.png","mtime":"2018-02-17T21:20:08+00:00","size":696,"digest":"1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6","integrity":"sha256-Hbvp0CjikvNvy6j4s6KNXokydU/CIVuaxp5M3s9RB8Y="},"marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png":{"logical_path":"marker-icon-2x.png","mtime":"2018-02-17T21:20:08+00:00","size":2464,"digest":"00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528","integrity":"sha256-ABecTB7oMNOhCEEq4NKU9Vd2z+sIXGASmjmqb8SuJSg="},"marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png":{"logical_path":"marker-icon.png","mtime":"2018-02-17T21:20:08+00:00","size":1466,"digest":"574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437","integrity":"sha256-V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy/owHesdxDc="},"marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png":{"logical_path":"marker-shadow.png","mtime":"2018-02-17T21:20:08+00:00","size":618,"digest":"264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da","integrity":"sha256-Jk9cZAM58ELdcpBiz8BMF/jqDymIK1OOOEjtjxDttNo="},"application-fca9acae9a9890c80a5d5a84a347a54f771e767fa5259502bbb8f890267c9b32.js":{"logical_path":"application.js","mtime":"2018-02-17T07:16:43+00:00","size":1142230,"digest":"fca9acae9a9890c80a5d5a84a347a54f771e767fa5259502bbb8f890267c9b32","integrity":"sha256-/KmsrpqYkMgKXVqEo0elT3cedn+lJZUCu7j4kCZ8mzI="},"leaflet-src.js-6eed528b5678ee4f34b8be267a8da5d14734d58d56baeea6a31e9819e6630775.map":{"logical_path":"leaflet-src.js.map","mtime":"2018-02-13T16:20:12+00:00","size":755043,"digest":"6eed528b5678ee4f34b8be267a8da5d14734d58d56baeea6a31e9819e6630775","integrity":"sha256-bu1Si1Z47k80uL4meo2l0Uc01Y1Wuu6mox6YGeZjB3U="},"application-c84b81474b7da42f9770a624aa28048d9f2b043a8c5aeb76d78d6bee8a91d6d7.css":{"logical_path":"application.css","mtime":"2018-02-17T07:16:43+00:00","size":151419,"digest":"c84b81474b7da42f9770a624aa28048d9f2b043a8c5aeb76d78d6bee8a91d6d7","integrity":"sha256-yEuBR0t9pC+XcKYkqigEjZ8rBDqMWut2141r7oqR1tc="},"application-236a7ce1734fbb55d484f6212c0e0870483d47985dc385227878eba72bb6843b.js":{"logical_path":"application.js","mtime":"2018-02-17T08:57:13+00:00","size":560939,"digest":"236a7ce1734fbb55d484f6212c0e0870483d47985dc385227878eba72bb6843b","integrity":"sha256-I2p84XNPu1XUhPYhLA4IcEg9R5hdw4UieHjrpyu2hDs="},"application-d0555c2650b6094e6ff271f0a365db2e80bd093ab7de0149c8700afe71f7dc33.css":{"logical_path":"application.css","mtime":"2018-02-17T08:57:13+00:00","size":151459,"digest":"d0555c2650b6094e6ff271f0a365db2e80bd093ab7de0149c8700afe71f7dc33","integrity":"sha256-0FVcJlC2CU5v8nHwo2XbLoC9CTq33gFJyHAK/nH33DM="},"application-f227af72f47efaff46ed4b5db1363ef5e041435d027973012b43cdb98dca6b30.js":{"logical_path":"application.js","mtime":"2018-02-18T07:06:44+00:00","size":893327,"digest":"f227af72f47efaff46ed4b5db1363ef5e041435d027973012b43cdb98dca6b30","integrity":"sha256-8ievcvR++v9G7UtdsTY+9eBBQ10CeXMBK0PNuY3KazA="},"application-14d3ccd11a4e292bb15de3e098654b87cbd40ac5e46f6ea6154bdaab885a0ffc.css":{"logical_path":"application.css","mtime":"2018-02-17T21:37:49+00:00","size":400680,"digest":"14d3ccd11a4e292bb15de3e098654b87cbd40ac5e46f6ea6154bdaab885a0ffc","integrity":"sha256-FNPM0RpOKSuxXePgmGVLh8vUCsXkb26mFUvaq4haD/w="},"leaflet/layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png":{"logical_path":"leaflet/layers-2x.png","mtime":"2018-02-18T08:15:05+00:00","size":1259,"digest":"066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf","integrity":"sha256-Bm2sqFDY/77wB68AsG6sABVyje4nnFHzy2xxbffELt8="},"leaflet/layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png":{"logical_path":"leaflet/layers.png","mtime":"2018-02-18T08:15:05+00:00","size":696,"digest":"1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6","integrity":"sha256-Hbvp0CjikvNvy6j4s6KNXokydU/CIVuaxp5M3s9RB8Y="},"leaflet/marker-icon-2x-violet-d2d4278dacf3fea3d5e9fc2fffbba8a840bc1310cc1457198426e2c11feb4e44.png":{"logical_path":"leaflet/marker-icon-2x-violet.png","mtime":"2018-02-18T08:15:05+00:00","size":4190,"digest":"d2d4278dacf3fea3d5e9fc2fffbba8a840bc1310cc1457198426e2c11feb4e44","integrity":"sha256-0tQnjazz/qPV6fwv/7uoqEC8ExDMFFcZhCbiwR/rTkQ="},"leaflet/marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png":{"logical_path":"leaflet/marker-icon-2x.png","mtime":"2018-02-18T08:15:05+00:00","size":2464,"digest":"00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528","integrity":"sha256-ABecTB7oMNOhCEEq4NKU9Vd2z+sIXGASmjmqb8SuJSg="},"leaflet/marker-icon-violet-6892da1a4188e5ccf68e67aae2a94fbae14ad75915b31555935130ae4fcc4145.png":{"logical_path":"leaflet/marker-icon-violet.png","mtime":"2018-02-18T08:15:05+00:00","size":1859,"digest":"6892da1a4188e5ccf68e67aae2a94fbae14ad75915b31555935130ae4fcc4145","integrity":"sha256-aJLaGkGI5cz2jmeq4qlPuuFK11kVsxVVk1Ewrk/MQUU="},"leaflet/marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png":{"logical_path":"leaflet/marker-icon.png","mtime":"2018-02-18T08:15:05+00:00","size":1466,"digest":"574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437","integrity":"sha256-V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy/owHesdxDc="},"leaflet/marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png":{"logical_path":"leaflet/marker-shadow.png","mtime":"2018-02-18T08:15:05+00:00","size":618,"digest":"264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da","integrity":"sha256-Jk9cZAM58ELdcpBiz8BMF/jqDymIK1OOOEjtjxDttNo="},"application-16ffe3a4ba0563165379ed18eaa03047a3236aab0f87182da0adee5df35cfc19.js":{"logical_path":"application.js","mtime":"2018-02-20T18:37:56+00:00","size":893869,"digest":"16ffe3a4ba0563165379ed18eaa03047a3236aab0f87182da0adee5df35cfc19","integrity":"sha256-Fv/jpLoFYxZTee0Y6qAwR6MjaqsPhxgtoK3uXfNc/Bk="},"application-113441acdfe39db70de608d7f2f5b2f73dd19a8b043c5cab386dcfd51f5bf14f.js":{"logical_path":"application.js","mtime":"2018-03-04T18:47:21+00:00","size":560796,"digest":"113441acdfe39db70de608d7f2f5b2f73dd19a8b043c5cab386dcfd51f5bf14f","integrity":"sha256-ETRBrN/jnbcN5gjX8vWy9z3RmosEPFyrOG3P1R9b8U8="},"application-e2367e1987fa69044be85328ee5159542ee3b1c428c750e26423b48784042557.css":{"logical_path":"application.css","mtime":"2018-02-17T21:37:49+00:00","size":151261,"digest":"e2367e1987fa69044be85328ee5159542ee3b1c428c750e26423b48784042557","integrity":"sha256-4jZ+GYf6aQRL6FMo7lFZVC7jscQox1DiZCO0h4QEJVc="},"application-815a5058786e90c408f9b0e342320b6a8487c961e5008b3b68f559ec6c678a2c.css":{"logical_path":"application.css","mtime":"2018-02-19T21:20:04+00:00","size":151405,"digest":"815a5058786e90c408f9b0e342320b6a8487c961e5008b3b68f559ec6c678a2c","integrity":"sha256-gVpQWHhukMQI+bDjQjILaoSHyWHlAIs7aPVZ7Gxniiw="},"application-688b07c12b6780fd370e4e8d2443ca83e8746cf1512001c85fdc4f79441319c1.css":{"logical_path":"application.css","mtime":"2018-02-22T06:53:09+00:00","size":151442,"digest":"688b07c12b6780fd370e4e8d2443ca83e8746cf1512001c85fdc4f79441319c1","integrity":"sha256-aIsHwStngP03Dk6NJEPKg+h0bPFRIAHIX9xPeUQTGcE="},"application-e147cdaaadeb2d764463df7256a5ebb1f24431e2b499568bb6078ea0b70a21ed.css":{"logical_path":"application.css","mtime":"2018-02-23T19:42:08+00:00","size":401766,"digest":"e147cdaaadeb2d764463df7256a5ebb1f24431e2b499568bb6078ea0b70a21ed","integrity":"sha256-4UfNqq3rLXZEY99yVqXrsfJEMeK0mVaLtgeOoLcKIe0="},"application-2cf45f6c0744bd83e4a49784cc736df6c2454969f2bcd3ad8e09736ba2308479.css":{"logical_path":"application.css","mtime":"2018-03-04T18:47:21+00:00","size":152310,"digest":"2cf45f6c0744bd83e4a49784cc736df6c2454969f2bcd3ad8e09736ba2308479","integrity":"sha256-LPRfbAdEvYPkpJeEzHNt9sJFSWnyvNOtjglza6IwhHk="},"application-39c8a35b541db04c196f9e12dfc1d97349712930459481b1eb9fe8812c1feda1.js":{"logical_path":"application.js","mtime":"2018-04-19T12:27:02+01:00","size":560425,"digest":"39c8a35b541db04c196f9e12dfc1d97349712930459481b1eb9fe8812c1feda1","integrity":"sha256-OcijW1QdsEwZb54S38HZc0lxKTBFlIGx65/ogSwf7aE="},"application-cf9ec488aa6bf5b8ca0c2c014fd20b0964547261175d1a102896f5a3b495f420.css":{"logical_path":"application.css","mtime":"2018-03-19T08:37:53+00:00","size":152514,"digest":"cf9ec488aa6bf5b8ca0c2c014fd20b0964547261175d1a102896f5a3b495f420","integrity":"sha256-z57EiKpr9bjKDCwBT9ILCWRUcmEXXRoQKJb1o7SV9CA="},"application-8157718fb3ce70825dc6e8ec0246b882cd7028cd5abd22d5376ec4c3ee3e80be.css":{"logical_path":"application.css","mtime":"2018-04-02T08:19:01+01:00","size":153340,"digest":"8157718fb3ce70825dc6e8ec0246b882cd7028cd5abd22d5376ec4c3ee3e80be","integrity":"sha256-gVdxj7POcIJdxujsAka4gs1wKM1avSLVN27Ew+4+gL4="},"application-707a0798e5712ce10f1d5b87c75ab5fd1dd4ec9e6b707c12132f06281252ffd0.css":{"logical_path":"application.css","mtime":"2018-04-05T09:23:23+01:00","size":153378,"digest":"707a0798e5712ce10f1d5b87c75ab5fd1dd4ec9e6b707c12132f06281252ffd0","integrity":"sha256-cHoHmOVxLOEPHVuHx1q1/R3U7J5rcHwSEy8GKBJS/9A="},"application-3266c7bd86687d66f7fea036d3eb363d728e14a8eb12819a30870d13ce5c20a4.css":{"logical_path":"application.css","mtime":"2018-04-16T08:45:39+01:00","size":153438,"digest":"3266c7bd86687d66f7fea036d3eb363d728e14a8eb12819a30870d13ce5c20a4","integrity":"sha256-MmbHvYZofWb3/qA20+s2PXKOFKjrEoGaMIcNE85cIKQ="},"application-e51695406f9220e10fc06afe2a2f18e32776109e294b34f1c938afeeecbc27fc.css":{"logical_path":"application.css","mtime":"2018-04-17T12:13:27+01:00","size":153459,"digest":"e51695406f9220e10fc06afe2a2f18e32776109e294b34f1c938afeeecbc27fc","integrity":"sha256-5RaVQG+SIOEPwGr+Ki8Y4yd2EJ4pSzTxyTiv7uy8J/w="},"application-19f60e6ea7840b06f5d59dfa63ba412ca1fa6d251a1a15bca659ed92637b804a.css":{"logical_path":"application.css","mtime":"2018-04-18T20:42:24+01:00","size":154006,"digest":"19f60e6ea7840b06f5d59dfa63ba412ca1fa6d251a1a15bca659ed92637b804a","integrity":"sha256-GfYObqeECwb11Z36Y7pBLKH6bSUaGhW8plntkmN7gEo="},"application-eb62787d5a75f0bcdc622becb41aac3426e08f88c08e73a67a20b26dc6066fb7.css":{"logical_path":"application.css","mtime":"2018-04-19T09:31:10+01:00","size":154145,"digest":"eb62787d5a75f0bcdc622becb41aac3426e08f88c08e73a67a20b26dc6066fb7","integrity":"sha256-62J4fVp18LzcYivstBqsNCbgj4jAjnOmeiCybcYGb7c="},"icons/if_icon-calendar_211633-96d8b4b40a7bc7af5f5821257083b42a158986c679e5aa3144c1fb5c267f757e.svg":{"logical_path":"icons/if_icon-calendar_211633.svg","mtime":"2018-04-19T12:20:22+01:00","size":989,"digest":"96d8b4b40a7bc7af5f5821257083b42a158986c679e5aa3144c1fb5c267f757e","integrity":"sha256-lti0tAp7x69fWCElcIO0KhWJhsZ55aoxRMH7XCZ/dX4="},"icons/if_icon-ios7-location-outline_211766-2185392dfb3feb3ac53b72a00302af749bcc5ecae6a08bf0a32eb222dc4afc70.svg":{"logical_path":"icons/if_icon-ios7-location-outline_211766.svg","mtime":"2018-04-19T12:20:18+01:00","size":1021,"digest":"2185392dfb3feb3ac53b72a00302af749bcc5ecae6a08bf0a32eb222dc4afc70","integrity":"sha256-IYU5Lfs/6zrFO3KgAwKvdJvMXsrmoIvwoy6yItxK/HA="},"application-29fd335152f6a434037b90ee05f9673489a5435377820442b1015620526bf377.css":{"logical_path":"application.css","mtime":"2018-04-19T12:27:02+01:00","size":154193,"digest":"29fd335152f6a434037b90ee05f9673489a5435377820442b1015620526bf377","integrity":"sha256-Kf0zUVL2pDQDe5DuBflnNImlQ1N3ggRCsQFWIFJr83c="},"icons/if_icon-link_211853-837f4c6d43b685637636c5118f2f021e586e69457cc270433e4278cb1b482cf8.svg":{"logical_path":"icons/if_icon-link_211853.svg","mtime":"2018-04-19T12:42:02+01:00","size":1018,"digest":"837f4c6d43b685637636c5118f2f021e586e69457cc270433e4278cb1b482cf8","integrity":"sha256-g39MbUO2hWN2NsURjy8CHlhuaUV8wnBDPkJ4yxtILPg="},"application-536b32812cdee6448d19a61eb7bfb3c35800a2606987b18ac3b3696c8ee491dd.css":{"logical_path":"application.css","mtime":"2018-04-19T17:21:51+01:00","size":154291,"digest":"536b32812cdee6448d19a61eb7bfb3c35800a2606987b18ac3b3696c8ee491dd","integrity":"sha256-U2sygSze5kSNGaYet7+zw1gAomBph7GKw7NpbI7kkd0="},"application-ebd81e4e7256a3a9bf0db06b80274f2d6006983b069b09c63c6e7ac0b7c2290f.js":{"logical_path":"application.js","mtime":"2018-04-19T17:31:04+01:00","size":565591,"digest":"ebd81e4e7256a3a9bf0db06b80274f2d6006983b069b09c63c6e7ac0b7c2290f","integrity":"sha256-69geTnJWo6m/DbBrgCdPLWAGmDsGmwnGPG56wLfCKQ8="},"application-36bd08823dd833e8e59c5f06116fa0980dd8400c2b2e494cfdee3e165301db3f.js":{"logical_path":"application.js","mtime":"2018-04-24T09:02:47+01:00","size":565651,"digest":"36bd08823dd833e8e59c5f06116fa0980dd8400c2b2e494cfdee3e165301db3f","integrity":"sha256-Nr0Igj3YM+jlnF8GEW+gmA3YQAwrLklM/e4+FlMB2z8="},"application-13c2b26404f7b3ee6ef7944e3676e3562fb50f357475132335936b197acfc7c9.css":{"logical_path":"application.css","mtime":"2018-04-19T17:36:01+01:00","size":154323,"digest":"13c2b26404f7b3ee6ef7944e3676e3562fb50f357475132335936b197acfc7c9","integrity":"sha256-E8KyZAT3s+5u95RONnbjVi+1DzV0dRMjNZNrGXrPx8k="},"application-31408a37d336182be33d3cf86187d567fe17213b18044c2b78b81645db4f638e.css":{"logical_path":"application.css","mtime":"2018-04-19T18:08:12+01:00","size":154365,"digest":"31408a37d336182be33d3cf86187d567fe17213b18044c2b78b81645db4f638e","integrity":"sha256-MUCKN9M2GCvjPTz4YYfVZ/4XITsYBEwreLgWRdtPY44="},"samples/adam-whitlock-270558-unsplash-afcf2f17063f371ec0ad495170db234a9b7dc4ab793c648025dceabd39b39047.jpg":{"logical_path":"samples/adam-whitlock-270558-unsplash.jpg","mtime":"2018-04-24T08:12:43+01:00","size":2895520,"digest":"afcf2f17063f371ec0ad495170db234a9b7dc4ab793c648025dceabd39b39047","integrity":"sha256-r88vFwY/Nx7ArUlRcNsjSpt9xKt5PGSAJdzqvTmzkEc="},"samples/cristina-cerda-43101-unsplash-f65c2cb6817ac07da16d94e94ab217006aeb23cb918d824075bbbd00fbe6c115.jpg":{"logical_path":"samples/cristina-cerda-43101-unsplash.jpg","mtime":"2018-04-24T08:12:43+01:00","size":6537727,"digest":"f65c2cb6817ac07da16d94e94ab217006aeb23cb918d824075bbbd00fbe6c115","integrity":"sha256-9lwstoF6wH2hbZTpSrIXAGrrI8uRjYJAdbu9APvmwRU="},"application-e022edb51025acf97b1ec9db382684d583a9a285f7d37ad8f4e975af13c009dc.css":{"logical_path":"application.css","mtime":"2018-04-24T09:02:47+01:00","size":154409,"digest":"e022edb51025acf97b1ec9db382684d583a9a285f7d37ad8f4e975af13c009dc","integrity":"sha256-4CLttRAlrPl7HsnbOCaE1YOpooX303rY9Ol1rxPACdw="},"samples/sample_groups/bass-music-guild-92695b99458cca5f1c19f4623b6ccc1965fabadd3997434023431b449268e902.jpg":{"logical_path":"samples/sample_groups/bass-music-guild.jpg","mtime":"2018-04-26T21:14:28+01:00","size":790679,"digest":"92695b99458cca5f1c19f4623b6ccc1965fabadd3997434023431b449268e902","integrity":"sha256-kmlbmUWMyl8cGfRiO2zMGWX6ut05l0NAI0MbRJJo6QI="},"samples/sample_groups/bookshop-c6aa6156c995fa31a7ab15565a02b8b2045576df9f448cd92fbe82f783e64fa5.jpg":{"logical_path":"samples/sample_groups/bookshop.jpg","mtime":"2018-04-26T21:14:28+01:00","size":10963504,"digest":"c6aa6156c995fa31a7ab15565a02b8b2045576df9f448cd92fbe82f783e64fa5","integrity":"sha256-xqphVsmV+jGnqxVWWgK4sgRVdt+fRIzZL76C94PmT6U="},"samples/sample_groups/bruce-christianson-558321-unsplash-609737d190d63fa119cd42513f838476d4af3afc6942932c673cefdf34a37d33.jpg":{"logical_path":"samples/sample_groups/bruce-christianson-558321-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1398380,"digest":"609737d190d63fa119cd42513f838476d4af3afc6942932c673cefdf34a37d33","integrity":"sha256-YJc30ZDWP6EZzUJRP4OEdtSvOvxpQpMsZzzv3zSjfTM="},"samples/sample_groups/chillhop-4fe6ac7de47f25f496ba8de730ec5ff66beb56fcbbb270db52a0a5316ae66dc3.jpg":{"logical_path":"samples/sample_groups/chillhop.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1017800,"digest":"4fe6ac7de47f25f496ba8de730ec5ff66beb56fcbbb270db52a0a5316ae66dc3","integrity":"sha256-T+asfeR/JfSWuo3nMOxf9mvrVvy7snDbUqClMWrmbcM="},"samples/sample_groups/christin-hume-505815-unsplash-6b62d3f82cc091cc04c8049972f5205623ef5f15d00760e1dfdbff41acbb16a3.jpg":{"logical_path":"samples/sample_groups/christin-hume-505815-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1956713,"digest":"6b62d3f82cc091cc04c8049972f5205623ef5f15d00760e1dfdbff41acbb16a3","integrity":"sha256-a2LT+CzAkcwEyASZcvUgViPvXxXQB2Dh39v/Qay7FqM="},"samples/sample_groups/clem-onojeghuo-143466-unsplash-5566806157b0d56c0c4c2513d164fc2b28042bda561be542f2927c635b44aaa0.jpg":{"logical_path":"samples/sample_groups/clem-onojeghuo-143466-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2898960,"digest":"5566806157b0d56c0c4c2513d164fc2b28042bda561be542f2927c635b44aaa0","integrity":"sha256-VWaAYVew1WwMTCUT0WT8KygEK9pWG+VC8pJ8Y1tEqqA="},"samples/sample_groups/coding-7c346a5655a6053401c1f7adb59b365721ed7aea3ffa1ea65c614a875c9ec68c.jpg":{"logical_path":"samples/sample_groups/coding.jpg","mtime":"2018-04-26T21:14:28+01:00","size":11494241,"digest":"7c346a5655a6053401c1f7adb59b365721ed7aea3ffa1ea65c614a875c9ec68c","integrity":"sha256-fDRqVlWmBTQBwfettZs2VyHteuo/+h6mXGFKh1yexow="},"samples/sample_groups/edm-504d6ae57079ec78eb31abd1ec6d84e2876d62fd2d7c52f97ebd4303337421bc.jpg":{"logical_path":"samples/sample_groups/edm.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1037583,"digest":"504d6ae57079ec78eb31abd1ec6d84e2876d62fd2d7c52f97ebd4303337421bc","integrity":"sha256-UE1q5XB57HjrMavR7G2E4odtYv0tfFL5fr1DAzN0Ibw="},"samples/sample_groups/emily-sea-198689-unsplash-3c7a551e0c0dc9ca3f7a4def19c84972a0bc436c22da8eac09bbc80a4b93d281.jpg":{"logical_path":"samples/sample_groups/emily-sea-198689-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2291075,"digest":"3c7a551e0c0dc9ca3f7a4def19c84972a0bc436c22da8eac09bbc80a4b93d281","integrity":"sha256-PHpVHgwNyco/ek3vGchJcqC8Q2wi2o6sCbvICkuT0oE="},"samples/sample_groups/ingrid-hofstra-527954-unsplash-d4851b2cbd17908629a1adff9c26b917ca0c7e64e5885ea0b016065f535bc177.jpg":{"logical_path":"samples/sample_groups/ingrid-hofstra-527954-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1387645,"digest":"d4851b2cbd17908629a1adff9c26b917ca0c7e64e5885ea0b016065f535bc177","integrity":"sha256-1IUbLL0XkIYpoa3/nCa5F8oMfmTliF6gsBYGX1NbwXc="},"samples/sample_groups/plain-air-oregon-61e3f181480f9e3e33ade40bcd9ebfc2878eadd14b22c8c1ddecc645d6235a23.jpg":{"logical_path":"samples/sample_groups/plain-air-oregon.jpg","mtime":"2018-04-26T21:14:28+01:00","size":3468654,"digest":"61e3f181480f9e3e33ade40bcd9ebfc2878eadd14b22c8c1ddecc645d6235a23","integrity":"sha256-YePxgUgPnj4zreQLzZ6/woeOrdFLIsjB3ezGRdYjWiM="},"samples/sample_groups/progressive-fcf4de446d74ceae617d86b3e7a71e50623f939fdadbf29d8c2f9de88a6bffeb.jpg":{"logical_path":"samples/sample_groups/progressive.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1233916,"digest":"fcf4de446d74ceae617d86b3e7a71e50623f939fdadbf29d8c2f9de88a6bffeb","integrity":"sha256-/PTeRG10zq5hfYaz56ceUGI/k5/a2/KdjC+d6Ipr/+s="},"samples/sample_groups/raveup-19a24bb6c6be4e249896ffd8be8944ffe50656a56e8e99f6380befa30e938683.jpg":{"logical_path":"samples/sample_groups/raveup.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2344954,"digest":"19a24bb6c6be4e249896ffd8be8944ffe50656a56e8e99f6380befa30e938683","integrity":"sha256-GaJLtsa+TiSYlv/YvolE/+UGVqVujpn2OAvvow6ThoM="},"samples/sample_groups/sketching-e2a1fea3a79cf15df4575b79298aaba9d4928065f95b80b413c7d4f5d47db103.jpg":{"logical_path":"samples/sample_groups/sketching.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1181981,"digest":"e2a1fea3a79cf15df4575b79298aaba9d4928065f95b80b413c7d4f5d47db103","integrity":"sha256-4qH+o6ec8V30V1t5KYqrqdSSgGX5W4C0E8fU9dR9sQM="},"samples/sample_groups/taras-shypka-424932-unsplash-0ea22fa928cdcd347c02cd50c72d9ef000375f794c3959c0129367284645408d.jpg":{"logical_path":"samples/sample_groups/taras-shypka-424932-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2295932,"digest":"0ea22fa928cdcd347c02cd50c72d9ef000375f794c3959c0129367284645408d","integrity":"sha256-DqIvqSjNzTR8As1Qxy2e8AA3X3lMOVnAEpNnKEZFQI0="},"samples/sample_groups/tea-sketchers-ea13e9e7b548262986a01aa749b9ca131ed44ab39b936cd492c0202694ed6317.jpg":{"logical_path":"samples/sample_groups/tea-sketchers.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2730782,"digest":"ea13e9e7b548262986a01aa749b9ca131ed44ab39b936cd492c0202694ed6317","integrity":"sha256-6hPp57VIJimGoBqnSbnKEx7USrObk2zUksAgJpTtYxc="},"samples/sample_groups/tenerife-edm-f257f19e40cc6a7e861bb76061ebde244c99010f2872cdffbcb9ea15b27b2f6f.jpg":{"logical_path":"samples/sample_groups/tenerife-edm.jpg","mtime":"2018-04-26T21:14:28+01:00","size":2173649,"digest":"f257f19e40cc6a7e861bb76061ebde244c99010f2872cdffbcb9ea15b27b2f6f","integrity":"sha256-8lfxnkDMan6GG7dgYeveJEyZAQ8ocs3/vLnqFbJ7L28="},"samples/sample_groups/tenerife-02ce4366a51375383978ba943dffd2e4998bf3f4bc9415645f91357a41ae0435.jpg":{"logical_path":"samples/sample_groups/tenerife.jpg","mtime":"2018-04-26T21:14:28+01:00","size":4568711,"digest":"02ce4366a51375383978ba943dffd2e4998bf3f4bc9415645f91357a41ae0435","integrity":"sha256-As5DZqUTdTg5eLqUPf/S5JmL8/S8lBVkX5E1ekGuBDU="},"samples/sample_groups/tomasz-wozniak-484204-unsplash-8b65afbe766202eb42c3c6d95613c21aba19de0c905887f7846b5bdc0a880490.jpg":{"logical_path":"samples/sample_groups/tomasz-wozniak-484204-unsplash.jpg","mtime":"2018-04-26T21:14:28+01:00","size":1922979,"digest":"8b65afbe766202eb42c3c6d95613c21aba19de0c905887f7846b5bdc0a880490","integrity":"sha256-i2WvvnZiAutCw8bZVhPCGroZ3gyQWIf3hGtb3AqIBJA="},"samples/sample_groups/watermarbling-22a9ce88f1caec972233cc51d648364060c947bb7b25807e8d0bc67a2f349be7.jpg":{"logical_path":"samples/sample_groups/watermarbling.jpg","mtime":"2018-04-26T21:14:28+01:00","size":3528869,"digest":"22a9ce88f1caec972233cc51d648364060c947bb7b25807e8d0bc67a2f349be7","integrity":"sha256-IqnOiPHK7JciM8xR1kg2QGDJR7t7JYB+jQvGei80m+c="},"application-4b2e1a8fb90190b655299118e329cfb50147ec529f57989ccc266eef423c4dfe.js":{"logical_path":"application.js","mtime":"2018-04-27T09:43:23+01:00","size":576457,"digest":"4b2e1a8fb90190b655299118e329cfb50147ec529f57989ccc266eef423c4dfe","integrity":"sha256-Sy4aj7kBkLZVKZEY4ynPtQFH7FKfV5iczCZu70I8Tf4="},"samples/sample_events/borna-bevanda-377277-unsplash-135dfb007452dccf18dffcd8dbfb7950c6fe1c9b1e6172b00da862c25bca189f.jpg":{"logical_path":"samples/sample_events/borna-bevanda-377277-unsplash.jpg","mtime":"2018-04-27T12:08:02+01:00","size":2565540,"digest":"135dfb007452dccf18dffcd8dbfb7950c6fe1c9b1e6172b00da862c25bca189f","integrity":"sha256-E137AHRS3M8Y3/zY2/t5UMb+HJseYXKwDahiwlvKGJ8="},"application-cb0ad31dcd517ff3a4e15d432ae6cec492c012b419343393b56f47f58bbf0fcb.css":{"logical_path":"application.css","mtime":"2018-04-27T15:01:50+01:00","size":154438,"digest":"cb0ad31dcd517ff3a4e15d432ae6cec492c012b419343393b56f47f58bbf0fcb","integrity":"sha256-ywrTHc1Rf/Ok4V1DKubOxJLAErQZNDOTtW9H9Yu/D8s="},"application-60bfd65252b44717d749f27c377f4677486bc47b6fffbf3de653198b34976078.js":{"logical_path":"application.js","mtime":"2018-05-02T20:35:49+01:00","size":576457,"digest":"60bfd65252b44717d749f27c377f4677486bc47b6fffbf3de653198b34976078","integrity":"sha256-YL/WUlK0RxfXSfJ8N39Gd0hrxHtv/7895lMZizSXYHg="},"application-a75ffbc480a40deab1f4018a38c2d4d07a8efdde418985a2a36f7d724f323c9e.css":{"logical_path":"application.css","mtime":"2018-05-02T20:35:49+01:00","size":155082,"digest":"a75ffbc480a40deab1f4018a38c2d4d07a8efdde418985a2a36f7d724f323c9e","integrity":"sha256-p1/7xICkDeqx9AGKOMLU0HqO/d5BiYWio299ck8yPJ4="},"application-35b3445e43cdb234b97d81138278c06910025fb0f0337d9625b5bc463889a877.js":{"logical_path":"application.js","mtime":"2018-05-10T21:47:08+01:00","size":576457,"digest":"35b3445e43cdb234b97d81138278c06910025fb0f0337d9625b5bc463889a877","integrity":"sha256-NbNEXkPNsjS5fYETgnjAaRACX7DwM32WJbW8RjiJqHc="},"application-bb7f94c6891b52072456add2e5c3b0af2091eefd1b14a235e4c773ddd5350609.css":{"logical_path":"application.css","mtime":"2018-05-03T08:28:16+01:00","size":155228,"digest":"bb7f94c6891b52072456add2e5c3b0af2091eefd1b14a235e4c773ddd5350609","integrity":"sha256-u3+UxokbUgckVq3S5cOwryCR7v0bFKI15Mdz3dU1Bgk="},"application-c14a953e91d3bacff1d4c84ed4beb11373fad361465c1e51aa3d1ba5e7ce51ac.css":{"logical_path":"application.css","mtime":"2018-05-03T22:04:59+01:00","size":155324,"digest":"c14a953e91d3bacff1d4c84ed4beb11373fad361465c1e51aa3d1ba5e7ce51ac","integrity":"sha256-wUqVPpHTus/x1MhO1L6xE3P602FGXB5Rqj0bpefOUaw="},"application-9e8381aa1d447f92ad3dc4b08831bd44ae4310e59aed175f35df92d08f9c4070.css":{"logical_path":"application.css","mtime":"2018-05-04T08:56:15+01:00","size":154863,"digest":"9e8381aa1d447f92ad3dc4b08831bd44ae4310e59aed175f35df92d08f9c4070","integrity":"sha256-noOBqh1Ef5KtPcSwiDG9RK5DEOWa7RdfNd+S0I+cQHA="},"application-40978c30ee5f041d65ebce349f90bb2693fa128a8972356af0d5927d89809fd9.css":{"logical_path":"application.css","mtime":"2018-05-04T09:17:51+01:00","size":154981,"digest":"40978c30ee5f041d65ebce349f90bb2693fa128a8972356af0d5927d89809fd9","integrity":"sha256-QJeMMO5fBB1l6840n5C7JpP6EoqJcjVq8NWSfYmAn9k="},"application-a2c9ab4d32f94a4239d9d2f8d68e62f0ee9f7578264ff392c399667c3e31a4e8.css":{"logical_path":"application.css","mtime":"2018-05-04T17:06:27+01:00","size":155124,"digest":"a2c9ab4d32f94a4239d9d2f8d68e62f0ee9f7578264ff392c399667c3e31a4e8","integrity":"sha256-osmrTTL5SkI52dL41o5i8O6fdXgmT/OSw5lmfD4xpOg="},"application-03e7608078c0467e76a5f3e136b52445eb560e7f6cee8b567ca2601fbcfca02c.js":{"logical_path":"application.js","mtime":"2018-05-17T13:28:43+01:00","size":942468,"digest":"03e7608078c0467e76a5f3e136b52445eb560e7f6cee8b567ca2601fbcfca02c","integrity":"sha256-A+dggHjARn52pfPhNrUkRetWDn9s7otWfKJgH7z8oCw="},"application-03f28f91ccf8211ab0999feff0343b034a763a40b7472580739642834e0cee1e.css":{"logical_path":"application.css","mtime":"2018-05-06T07:44:43+01:00","size":155209,"digest":"03f28f91ccf8211ab0999feff0343b034a763a40b7472580739642834e0cee1e","integrity":"sha256-A/KPkcz4IRqwmZ/v8DQ7A0p2OkC3RyWAc5ZCg04M7h4="},"application-9fba308787d76f9e020771612ee8eba5f4600bf3ad7d4cfaccff6c65d4efef82.css":{"logical_path":"application.css","mtime":"2018-05-06T07:44:43+01:00","size":410825,"digest":"9fba308787d76f9e020771612ee8eba5f4600bf3ad7d4cfaccff6c65d4efef82","integrity":"sha256-n7owh4fXb54CB3FhLujrpfRgC/OtfUz6zP9sZdTv74I="},"application-67279d2d7fbcb23fa87225a1dfc0ead303858cf882cfd2c830d4f35b262115af.css":{"logical_path":"application.css","mtime":"2018-05-06T19:36:23+01:00","size":155234,"digest":"67279d2d7fbcb23fa87225a1dfc0ead303858cf882cfd2c830d4f35b262115af","integrity":"sha256-ZyedLX+8sj+ociWh38Dq0wOFjPiCz9LIMNTzWyYhFa8="},"samples/sample_events/borna-bevanda-377277-unsplash-ad16a54ca4101c38f55cb20ae4181487c0c8abb0f5f7194fb3de0b9cd1be13cd.jpg":{"logical_path":"samples/sample_events/borna-bevanda-377277-unsplash.jpg","mtime":"2018-05-09T09:21:27+01:00","size":2094206,"digest":"ad16a54ca4101c38f55cb20ae4181487c0c8abb0f5f7194fb3de0b9cd1be13cd","integrity":"sha256-rRalTKQQHDj1XLIK5BgUh8DIq7D19xlPs94LnNG+E80="},"samples/sample_groups/bass-music-guild-55bd438bb8837202e04855f077e9815beb52b00242247375542c469e998fa26a.jpg":{"logical_path":"samples/sample_groups/bass-music-guild.jpg","mtime":"2018-05-09T09:18:26+01:00","size":723387,"digest":"55bd438bb8837202e04855f077e9815beb52b00242247375542c469e998fa26a","integrity":"sha256-Vb1Di7iDcgLgSFXwd+mBW+tSsAJCJHN1VCxGnpmPomo="},"samples/sample_groups/bookshop-c734553638ed70a0de277412f4b3b93551c310b4fc953c5e7cc16cfb27c8732e.jpg":{"logical_path":"samples/sample_groups/bookshop.jpg","mtime":"2018-05-09T09:18:29+01:00","size":2996163,"digest":"c734553638ed70a0de277412f4b3b93551c310b4fc953c5e7cc16cfb27c8732e","integrity":"sha256-xzRVNjjtcKDeJ3QS9LO5NVHDELT8lTxefMFs+yfIcy4="},"samples/sample_groups/bruce-christianson-558321-unsplash-58bff7ef36626f82681ff87f8445f0dfca11df14d5a59353aa4bbb9f6d635ed8.jpg":{"logical_path":"samples/sample_groups/bruce-christianson-558321-unsplash.jpg","mtime":"2018-05-09T09:18:29+01:00","size":344019,"digest":"58bff7ef36626f82681ff87f8445f0dfca11df14d5a59353aa4bbb9f6d635ed8","integrity":"sha256-WL/37zZib4JoH/h/hEXw38oR3xTVpZNTqku7n21jXtg="},"samples/sample_groups/chillhop-a262d428b5dd361c2c5867601c0db60e76f63adf4f34e6b3637b8ce8d22cf8e3.jpg":{"logical_path":"samples/sample_groups/chillhop.jpg","mtime":"2018-05-09T09:18:29+01:00","size":436227,"digest":"a262d428b5dd361c2c5867601c0db60e76f63adf4f34e6b3637b8ce8d22cf8e3","integrity":"sha256-omLUKLXdNhwsWGdgHA22Dnb2Ot9PNOazY3uM6NIs+OM="},"samples/sample_groups/christin-hume-505815-unsplash-a145ea55ff8e966f0a511746530c8f1dce59146ebad2f5987d2aecf717d1a593.jpg":{"logical_path":"samples/sample_groups/christin-hume-505815-unsplash.jpg","mtime":"2018-05-09T09:18:29+01:00","size":309581,"digest":"a145ea55ff8e966f0a511746530c8f1dce59146ebad2f5987d2aecf717d1a593","integrity":"sha256-oUXqVf+Olm8KURdGUwyPHc5ZFG660vWYfSrs9xfRpZM="},"samples/sample_groups/clem-onojeghuo-143466-unsplash-0c65f1a587e83b04320a01ed683f535506b155e843dd0ed873e1fa3c0d42e34a.jpg":{"logical_path":"samples/sample_groups/clem-onojeghuo-143466-unsplash.jpg","mtime":"2018-05-09T09:18:29+01:00","size":643304,"digest":"0c65f1a587e83b04320a01ed683f535506b155e843dd0ed873e1fa3c0d42e34a","integrity":"sha256-DGXxpYfoOwQyCgHtaD9TVQaxVehD3Q7Yc+H6PA1C40o="},"samples/sample_groups/coding-1237c6604583a7eaffc93c4d8f185848b318bea746c617bed81637d2eae47aa8.jpg":{"logical_path":"samples/sample_groups/coding.jpg","mtime":"2018-05-09T09:18:30+01:00","size":4287403,"digest":"1237c6604583a7eaffc93c4d8f185848b318bea746c617bed81637d2eae47aa8","integrity":"sha256-EjfGYEWDp+r/yTxNjxhYSLMYvqdGxhe+2BY30urkeqg="},"samples/sample_groups/edm-b92af01154f8fb07f09427f71f165afa008c765cb5f67a5cc1aab9099d030b36.jpg":{"logical_path":"samples/sample_groups/edm.jpg","mtime":"2018-05-09T09:18:31+01:00","size":210464,"digest":"b92af01154f8fb07f09427f71f165afa008c765cb5f67a5cc1aab9099d030b36","integrity":"sha256-uSrwEVT4+wfwlCf3HxZa+gCMdly19npcwaq5CZ0DCzY="},"samples/sample_groups/emily-sea-198689-unsplash-af437c564038e5b22fe921c162ff6c36adb72e9ba0b0df3565b10b9e6363a580.jpg":{"logical_path":"samples/sample_groups/emily-sea-198689-unsplash.jpg","mtime":"2018-05-09T09:18:31+01:00","size":253406,"digest":"af437c564038e5b22fe921c162ff6c36adb72e9ba0b0df3565b10b9e6363a580","integrity":"sha256-r0N8VkA45bIv6SHBYv9sNq23LpugsN81ZbELnmNjpYA="},"samples/sample_groups/ingrid-hofstra-527954-unsplash-602149ba68519f7490f69a7b9e9dddc0687e21a67e97ea2efc01b0d97754b0df.jpg":{"logical_path":"samples/sample_groups/ingrid-hofstra-527954-unsplash.jpg","mtime":"2018-05-09T09:18:31+01:00","size":390750,"digest":"602149ba68519f7490f69a7b9e9dddc0687e21a67e97ea2efc01b0d97754b0df","integrity":"sha256-YCFJumhRn3SQ9pp7np3dwGh+IaZ+l+ou/AGw2XdUsN8="},"samples/sample_groups/plain-air-oregon-ca081dbf44166b734c538cd8d3e956998c6dd91ea486c95a86d5a23110fb3152.jpg":{"logical_path":"samples/sample_groups/plain-air-oregon.jpg","mtime":"2018-05-09T09:18:32+01:00","size":508201,"digest":"ca081dbf44166b734c538cd8d3e956998c6dd91ea486c95a86d5a23110fb3152","integrity":"sha256-yggdv0QWa3NMU4zY0+lWmYxt2R6khslahtWiMRD7MVI="},"samples/sample_groups/progressive-abeeb0370275d4109a250e65cf8bc63a037508b391fa0311887db54687a4d3b4.jpg":{"logical_path":"samples/sample_groups/progressive.jpg","mtime":"2018-05-09T09:18:32+01:00","size":254138,"digest":"abeeb0370275d4109a250e65cf8bc63a037508b391fa0311887db54687a4d3b4","integrity":"sha256-q+6wNwJ11BCaJQ5lz4vGOgN1CLOR+gMRiH21Roek07Q="},"samples/sample_groups/raveup-4c21c79980b29d5f17f6cbf4a977eb092ecbdefc4a29d6b3224e09363883c206.jpg":{"logical_path":"samples/sample_groups/raveup.jpg","mtime":"2018-05-09T09:18:32+01:00","size":746681,"digest":"4c21c79980b29d5f17f6cbf4a977eb092ecbdefc4a29d6b3224e09363883c206","integrity":"sha256-TCHHmYCynV8X9sv0qXfrCS7L3vxKKdazIk4JNjiDwgY="},"samples/sample_groups/sketching-fbf40836cad94e53e589db7d30f26b5b107c21dcfd5a5c3b1fc141d8eef7c23d.jpg":{"logical_path":"samples/sample_groups/sketching.jpg","mtime":"2018-05-09T09:18:32+01:00","size":337304,"digest":"fbf40836cad94e53e589db7d30f26b5b107c21dcfd5a5c3b1fc141d8eef7c23d","integrity":"sha256-+/QINsrZTlPlidt9MPJrWxB8Idz9Wlw7H8FB2O73wj0="},"samples/sample_groups/taras-shypka-424932-unsplash-7b296b814864dacbc54fe10ee42b53c6994caeb41fb4ff05bf804c26d57db564.jpg":{"logical_path":"samples/sample_groups/taras-shypka-424932-unsplash.jpg","mtime":"2018-05-09T09:18:32+01:00","size":371507,"digest":"7b296b814864dacbc54fe10ee42b53c6994caeb41fb4ff05bf804c26d57db564","integrity":"sha256-eylrgUhk2svFT+EO5CtTxplMrrQftP8Fv4BMJtV9tWQ="},"samples/sample_groups/tea-sketchers-88c490aa53bc544cc4a8097c567d8832a62ca4b5fac87e111dafab1ce2da4fbc.jpg":{"logical_path":"samples/sample_groups/tea-sketchers.jpg","mtime":"2018-05-09T09:18:32+01:00","size":855911,"digest":"88c490aa53bc544cc4a8097c567d8832a62ca4b5fac87e111dafab1ce2da4fbc","integrity":"sha256-iMSQqlO8VEzEqAl8Vn2IMqYspLX6yH4RHa+rHOLaT7w="},"samples/sample_groups/tenerife-edm-eb978c93ede0f3b75316049a14540db2070bc3bf58a6df1b0436b9325fdfa7c8.jpg":{"logical_path":"samples/sample_groups/tenerife-edm.jpg","mtime":"2018-05-09T09:18:32+01:00","size":590312,"digest":"eb978c93ede0f3b75316049a14540db2070bc3bf58a6df1b0436b9325fdfa7c8","integrity":"sha256-65eMk+3g87dTFgSaFFQNsgcLw79Ypt8bBDa5Ml/fp8g="},"samples/sample_groups/tenerife-5b615785a30eb88806d0091e95fa53bcd31f00b5000fcab1b17870748989a122.jpg":{"logical_path":"samples/sample_groups/tenerife.jpg","mtime":"2018-05-09T09:18:33+01:00","size":900359,"digest":"5b615785a30eb88806d0091e95fa53bcd31f00b5000fcab1b17870748989a122","integrity":"sha256-W2FXhaMOuIgG0AkelfpTvNMfALUAD8qxsXhwdImJoSI="},"samples/sample_groups/tomasz-wozniak-484204-unsplash-7171c240ea766b47054c895f5af478e5864197603d16f36934316758cd087eff.jpg":{"logical_path":"samples/sample_groups/tomasz-wozniak-484204-unsplash.jpg","mtime":"2018-05-09T09:18:34+01:00","size":611656,"digest":"7171c240ea766b47054c895f5af478e5864197603d16f36934316758cd087eff","integrity":"sha256-cXHCQOp2a0cFTIlfWvR45YZBl2A9FvNpNDFnWM0Ifv8="},"samples/sample_groups/watermarbling-5892e43e9eb8200f1c755432ccc7421a14c3f1ef6c8d7c4277845c0f57dc2001.jpg":{"logical_path":"samples/sample_groups/watermarbling.jpg","mtime":"2018-05-09T09:18:34+01:00","size":1178657,"digest":"5892e43e9eb8200f1c755432ccc7421a14c3f1ef6c8d7c4277845c0f57dc2001","integrity":"sha256-WJLkPp64IA8cdVQyzMdCGhTD8e9sjXxCd4RcD1fcIAE="},"application-806818e1c54ad2cb00ae7464ca4c4a470698396d1caf6a3fe4d270fdae2bbe19.css":{"logical_path":"application.css","mtime":"2018-05-10T21:47:08+01:00","size":156710,"digest":"806818e1c54ad2cb00ae7464ca4c4a470698396d1caf6a3fe4d270fdae2bbe19","integrity":"sha256-gGgY4cVK0ssArnRkykxKRwaYOW0cr2o/5NJw/a4rvhk="},"application-ffcf9cdb510f5c0c1fe3b96df64ca3d80e652de0844b71ac473872db478fa099.css":{"logical_path":"application.css","mtime":"2018-05-11T20:28:50+01:00","size":157038,"digest":"ffcf9cdb510f5c0c1fe3b96df64ca3d80e652de0844b71ac473872db478fa099","integrity":"sha256-/8+c21EPXAwf47lt9kyj2A5lLeCES3GsRzhy20ePoJk="},"application-c04a43803901d4e8bf9d2631b2ed5c78559d39df81814143d72090a8bef5ecbf.css":{"logical_path":"application.css","mtime":"2018-05-12T09:24:07+01:00","size":156953,"digest":"c04a43803901d4e8bf9d2631b2ed5c78559d39df81814143d72090a8bef5ecbf","integrity":"sha256-wEpDgDkB1Oi/nSYxsu1ceFWdOd+BgUFD1yCQqL717L8="},"application-1928eac6d401e2803b07d4ce335c8d12ec7478301a9b85f49edc6001483bf887.css":{"logical_path":"application.css","mtime":"2018-05-12T09:41:27+01:00","size":156949,"digest":"1928eac6d401e2803b07d4ce335c8d12ec7478301a9b85f49edc6001483bf887","integrity":"sha256-GSjqxtQB4oA7B9TOM1yNEux0eDAam4X0ntxgAUg7+Ic="},"application-221b76b8f32ad7f24262df85d425035d7d7a6c5a210129029fae2b31ff7a8249.css":{"logical_path":"application.css","mtime":"2018-05-12T10:09:35+01:00","size":157003,"digest":"221b76b8f32ad7f24262df85d425035d7d7a6c5a210129029fae2b31ff7a8249","integrity":"sha256-Iht2uPMq1/JCYt+F1CUDXX16bFohASkCn64rMf96gkk="},"application-083ddaeaae3a354c7976d68a68ab4266e477cdd3042ae2c90eb5ab0bb76764f2.css":{"logical_path":"application.css","mtime":"2018-05-12T10:19:05+01:00","size":156985,"digest":"083ddaeaae3a354c7976d68a68ab4266e477cdd3042ae2c90eb5ab0bb76764f2","integrity":"sha256-CD3a6q46NUx5dtaKaKtCZuR3zdMEKuLJDrWrC7dnZPI="},"application-05d7022033cc0103d4ae5b87de74f406887542e619e3f565f64383d822efde18.css":{"logical_path":"application.css","mtime":"2018-05-13T07:47:14+01:00","size":157186,"digest":"05d7022033cc0103d4ae5b87de74f406887542e619e3f565f64383d822efde18","integrity":"sha256-BdcCIDPMAQPUrluH3nT0Boh1QuYZ4/Vl9kOD2CLv3hg="},"application-f5934f731feca68a5fb5c978045d70e1934b32fcfe5e04415e1a6d00c4c94b4d.css":{"logical_path":"application.css","mtime":"2018-05-13T20:36:52+01:00","size":157254,"digest":"f5934f731feca68a5fb5c978045d70e1934b32fcfe5e04415e1a6d00c4c94b4d","integrity":"sha256-9ZNPcx/spopftcl4BF1w4ZNLMvz+XgRBXhptAMTJS00="},"application-c211185ae6e1d55e15c7db57c596e15787786eadd8d33ebcffab7508429dcb28.css":{"logical_path":"application.css","mtime":"2018-05-17T12:12:55+01:00","size":157375,"digest":"c211185ae6e1d55e15c7db57c596e15787786eadd8d33ebcffab7508429dcb28","integrity":"sha256-whEYWubh1V4Vx9tXxZbhV4d4bq3Y0z68/6t1CEKdyyg="},"application-7d0a77051bd13948f8b676d533440906188c02d8f99695c6f6488cca7ff5a557.css":{"logical_path":"application.css","mtime":"2018-05-17T13:28:43+01:00","size":157435,"digest":"7d0a77051bd13948f8b676d533440906188c02d8f99695c6f6488cca7ff5a557","integrity":"sha256-fQp3BRvROUj4tnbVM0QJBhiMAtj5lpXG9kiMyn/1pVc="},"application-598c36a9a8c8a8ea4414c6936b3c562aa1e0b08820ed66b63c8fdf3e3fbb0b51.css":{"logical_path":"application.css","mtime":"2018-05-17T13:33:50+01:00","size":157435,"digest":"598c36a9a8c8a8ea4414c6936b3c562aa1e0b08820ed66b63c8fdf3e3fbb0b51","integrity":"sha256-WYw2qajIqOpEFMaTazxWKqHgsIgg7Wa2PI/fPj+7C1E="},"application-f3aafde84474cbbca098e01aa22da301320e72d544ff088a2b7a365a1ae78faf.css":{"logical_path":"application.css","mtime":"2018-05-17T13:39:01+01:00","size":157422,"digest":"f3aafde84474cbbca098e01aa22da301320e72d544ff088a2b7a365a1ae78faf","integrity":"sha256-86r96ER0y7ygmOAaoi2jATIOctVE/wiKK3o2Whrnj68="},"application-64eb890f96e2a6a343ab2bc42257e74db0612946838ebbc4b92f2a5e8e0c4a9f.js":{"logical_path":"application.js","mtime":"2018-05-19T09:00:01+01:00","size":584682,"digest":"64eb890f96e2a6a343ab2bc42257e74db0612946838ebbc4b92f2a5e8e0c4a9f","integrity":"sha256-ZOuJD5bipqNDqyvEIlfnTbBhKUaDjrvEuS8qXo4MSp8="},"application-2d6cc907344551c25070f8233af9b501cfa328abc3a09c7ee50fbae751d9ea78.css":{"logical_path":"application.css","mtime":"2018-05-19T09:00:00+01:00","size":157697,"digest":"2d6cc907344551c25070f8233af9b501cfa328abc3a09c7ee50fbae751d9ea78","integrity":"sha256-LWzJBzRFUcJQcPgjOvm1Ac+jKKvDoJx+5Q+651HZ6ng="},"application-8d22a05db59259813375ae362279a26375ecc0ef6535bbddf6522665331d7b97.css":{"logical_path":"application.css","mtime":"2018-05-19T09:55:25+01:00","size":157689,"digest":"8d22a05db59259813375ae362279a26375ecc0ef6535bbddf6522665331d7b97","integrity":"sha256-jSKgXbWSWYEzda42InmiY3XswO9lNbvd9lImZTMde5c="},"application-3d32dbc695262a757b0fbc5c3bf50531ff0559f971d810818f39b0e684588767.css":{"logical_path":"application.css","mtime":"2018-05-19T11:25:01+01:00","size":157697,"digest":"3d32dbc695262a757b0fbc5c3bf50531ff0559f971d810818f39b0e684588767","integrity":"sha256-PTLbxpUmKnV7D7xcO/UFMf8FWflx2BCBjzmw5oRYh2c="},"application-7f90a0bc4e2961aa091725ac3a35e0ad612c742257bfd55c3780cf45eeb1f57d.css":{"logical_path":"application.css","mtime":"2018-05-19T11:25:38+01:00","size":157618,"digest":"7f90a0bc4e2961aa091725ac3a35e0ad612c742257bfd55c3780cf45eeb1f57d","integrity":"sha256-f5CgvE4pYaoJFyWsOjXgrWEsdCJXv9VcN4DPRe6x9X0="},"lazysizes-014b70259b7ccbedd5ad603d8edd93996b80fd47640c6f8353e29f427b82d9aa.js":{"logical_path":"lazysizes.js","mtime":"2018-05-19T19:47:26+01:00","size":8133,"digest":"014b70259b7ccbedd5ad603d8edd93996b80fd47640c6f8353e29f427b82d9aa","integrity":"sha256-AUtwJZt8y+3VrWA9jt2TmWuA/UdkDG+DU+KfQnuC2ao="},"application-baeeec15d12f7810ef4f54ed91ad25fe6103b1377eb37bd5d78731d7ab8d896c.js":{"logical_path":"application.js","mtime":"2018-05-19T19:47:26+01:00","size":584682,"digest":"baeeec15d12f7810ef4f54ed91ad25fe6103b1377eb37bd5d78731d7ab8d896c","integrity":"sha256-uu7sFdEveBDvT1Ttka0l/mEDsTd+s3vV14cx16uNiWw="},"lazysizes-b7e3b36049ed52a84ad33b8b24bbb0780921973e325ac91160a5f33c3de710e3.js":{"logical_path":"lazysizes.js","mtime":"2018-05-20T14:06:10+01:00","size":8150,"digest":"b7e3b36049ed52a84ad33b8b24bbb0780921973e325ac91160a5f33c3de710e3","integrity":"sha256-t+OzYEntUqhK0zuLJLuweAkhlz4yWskRYKXzPD3nEOM="},"application-19903d99d80288f7c2f11a24ce066072cd6427b0b99959999440a299da14884d.js":{"logical_path":"application.js","mtime":"2018-05-19T19:59:41+01:00","size":584699,"digest":"19903d99d80288f7c2f11a24ce066072cd6427b0b99959999440a299da14884d","integrity":"sha256-GZA9mdgCiPfC8RokzgZgcs1kJ7C5mVmZlECimdoUiE0="},"application-160f741bcd4bbfd95837da986cf3be96917a2669aedd7c272b009b0d90e50f38.css":{"logical_path":"application.css","mtime":"2018-05-19T20:10:16+01:00","size":157618,"digest":"160f741bcd4bbfd95837da986cf3be96917a2669aedd7c272b009b0d90e50f38","integrity":"sha256-Fg90G81Lv9lYN9qYbPO+lpF6Jmmu3XwnKwCbDZDlDzg="},"application-36481e3721761962dacfd8d8c1917d7bac696bfe3ba6671fc4de784bcb607b33.js":{"logical_path":"application.js","mtime":"2018-05-20T13:58:02+01:00","size":584589,"digest":"36481e3721761962dacfd8d8c1917d7bac696bfe3ba6671fc4de784bcb607b33","integrity":"sha256-NkgeNyF2GWLaz9jYwZF9e6xpa/47pmcfxN54S8tgezM="},"application-4574541c3e0ccbb479c6b930c9bebe36565f0db0479f2c16728b742d909b734a.js":{"logical_path":"application.js","mtime":"2018-06-08T09:20:14+01:00","size":584606,"digest":"4574541c3e0ccbb479c6b930c9bebe36565f0db0479f2c16728b742d909b734a","integrity":"sha256-RXRUHD4My7R5xrkwyb6+NlZfDbBHnywWcot0LZCbc0o="},"samples/sample_groups/alp-allen-altiner-352232-unsplash-c2d43e0c747321549890df1b31e1d44bdc805b828aa21479ce00d5cee29d35ea.jpg":{"logical_path":"samples/sample_groups/alp-allen-altiner-352232-unsplash.jpg","mtime":"2018-05-27T14:14:52+01:00","size":4105952,"digest":"c2d43e0c747321549890df1b31e1d44bdc805b828aa21479ce00d5cee29d35ea","integrity":"sha256-wtQ+DHRzIVSYkN8bMeHUS9yAW4KKohR5zgDVzuKdNeo="},"samples/sample_groups/chase-clark-509092-unsplash-f0a33543e15ddeb86ed13045faf19390fe197371d4d35f14297527473f15f8ae.jpg":{"logical_path":"samples/sample_groups/chase-clark-509092-unsplash.jpg","mtime":"2018-05-27T14:14:56+01:00","size":4036790,"digest":"f0a33543e15ddeb86ed13045faf19390fe197371d4d35f14297527473f15f8ae","integrity":"sha256-8KM1Q+Fd3rhu0TBF+vGTkP4Zc3HU018UKXUnRz8V+K4="},"samples/sample_groups/chris-ried-512801-unsplash-9dc67be4326796aeeff2e1642028be70b71aaea8764a67a26c6768dcc1b44955.jpg":{"logical_path":"samples/sample_groups/chris-ried-512801-unsplash.jpg","mtime":"2018-05-27T14:14:57+01:00","size":3606568,"digest":"9dc67be4326796aeeff2e1642028be70b71aaea8764a67a26c6768dcc1b44955","integrity":"sha256-ncZ75DJnlq7v8uFkICi+cLcarqh2SmeibGdo3MG0SVU="},"samples/sample_groups/lin-mei-159435-unsplash-b6dad05147162107c1518ae3ade1db190facc365b845de8febe55e4b229ccb1b.jpg":{"logical_path":"samples/sample_groups/lin-mei-159435-unsplash.jpg","mtime":"2018-05-27T14:14:57+01:00","size":1080317,"digest":"b6dad05147162107c1518ae3ade1db190facc365b845de8febe55e4b229ccb1b","integrity":"sha256-ttrQUUcWIQfBUYrjreHbGQ+sw2W4Rd6P6+VeSyKcyxs="},"samples/sample_groups/mpho-mojapelo-127562-unsplash-1128423da8c51adfe26648b15d51c78371f0d73e05768f0d8e1a4ef0ff574658.jpg":{"logical_path":"samples/sample_groups/mpho-mojapelo-127562-unsplash.jpg","mtime":"2018-05-27T14:14:57+01:00","size":538244,"digest":"1128423da8c51adfe26648b15d51c78371f0d73e05768f0d8e1a4ef0ff574658","integrity":"sha256-EShCPajFGt/iZkixXVHHg3Hw1z4Fdo8NjhpO8P9XRlg="},"samples/sample_groups/sergio-cavalcanti-350268-unsplash-1b9e355e5893d246d36d1d77112aaae2e50590c2737cdc0397d76094b9d8cb50.jpg":{"logical_path":"samples/sample_groups/sergio-cavalcanti-350268-unsplash.jpg","mtime":"2018-05-27T14:14:59+01:00","size":3249150,"digest":"1b9e355e5893d246d36d1d77112aaae2e50590c2737cdc0397d76094b9d8cb50","integrity":"sha256-G541XliT0kbTbR13ESqq4uUFkMJzfNwDl9dglLnYy1A="},"application-e19346497f84231eb92923234683995ed73d6b5977577bab2b850c2bf3fde383.css":{"logical_path":"application.css","mtime":"2018-06-01T07:30:31+01:00","size":158803,"digest":"e19346497f84231eb92923234683995ed73d6b5977577bab2b850c2bf3fde383","integrity":"sha256-4ZNGSX+EIx65KSMjRoOZXtc9a1l3V3urK4UMK/P944M="},"lazysizes-0622dd876a33cdbe06d2c1c01c3e3b9a8ca531f3c3c3ec27639622d535ceeec0.js":{"logical_path":"lazysizes.js","mtime":"2018-05-20T14:06:10+01:00","size":20736,"digest":"0622dd876a33cdbe06d2c1c01c3e3b9a8ca531f3c3c3ec27639622d535ceeec0","integrity":"sha256-BiLdh2ozzb4G0sHAHD47moylMfPDw+wnY5Yi1TXO7sA="},"application-18808b0ff8b535ea7ace35960762a766605a75e541a27f6bf8bcbf1737c88fef.js":{"logical_path":"application.js","mtime":"2018-06-02T22:19:25+01:00","size":963204,"digest":"18808b0ff8b535ea7ace35960762a766605a75e541a27f6bf8bcbf1737c88fef","integrity":"sha256-GICLD/i1Nep6zjWWB2KnZmBadeVBon9r+Ly/FzfIj+8="},"application-e79a992fbfc523bcda79ca802676fdb92ec965db3231a30ca591d518b6ab9c93.css":{"logical_path":"application.css","mtime":"2018-06-02T22:19:25+01:00","size":158891,"digest":"e79a992fbfc523bcda79ca802676fdb92ec965db3231a30ca591d518b6ab9c93","integrity":"sha256-55qZL7/FI7zaecqAJnb9uS7JZdsyMaMMpZHVGLarnJM="},"application-88aa188a2ca2dbeba5182e28b970898bf0ea68a58d1f9af200562d6dd917b59d.css":{"logical_path":"application.css","mtime":"2018-06-08T09:20:14+01:00","size":159082,"digest":"88aa188a2ca2dbeba5182e28b970898bf0ea68a58d1f9af200562d6dd917b59d","integrity":"sha256-iKoYiiyi2+ulGC4ouXCJi/DqaKWNH5ryAFYtbdkXtZ0="},"application-aa9247e3593406fdb3578f55537d49302ce1440ae5b3be45f0fb0c986e14cf1a.css":{"logical_path":"application.css","mtime":"2018-06-10T21:28:24+01:00","size":159057,"digest":"aa9247e3593406fdb3578f55537d49302ce1440ae5b3be45f0fb0c986e14cf1a","integrity":"sha256-qpJH41k0Bv2zV49VU31JMCzhRArls75F8PsMmG4Uzxo="},"application-dcf2929eec9d8a6da77dc7e2918fd02f5204e9572f75069d7b2ff81058056c42.js":{"logical_path":"application.js","mtime":"2018-07-07T18:04:12+01:00","size":594487,"digest":"dcf2929eec9d8a6da77dc7e2918fd02f5204e9572f75069d7b2ff81058056c42","integrity":"sha256-3PKSnuydim2nfcfikY/QL1IE6VcvdQadey/4EFgFbEI="},"application-b113d10717163da98e962d2022820cf92cd40f6de9a1d5755335fd352b72ab54.css":{"logical_path":"application.css","mtime":"2018-06-14T07:10:17+01:00","size":159086,"digest":"b113d10717163da98e962d2022820cf92cd40f6de9a1d5755335fd352b72ab54","integrity":"sha256-sRPRBxcWPamOli0gIoIM+SzUD23podV1UzX9NStyq1Q="},"application-186d7910ad29451ecc1767941a747a592b4d865d5082c242a9a19a8988e35ab4.css":{"logical_path":"application.css","mtime":"2018-06-14T07:19:25+01:00","size":159123,"digest":"186d7910ad29451ecc1767941a747a592b4d865d5082c242a9a19a8988e35ab4","integrity":"sha256-GG15EK0pRR7MF2eUGnR6WStNhl1QgsJCqaGaiYjjWrQ="},"application-72b85be22ce44752ae3223277f179126057d283d85319b63a0884340919c030f.css":{"logical_path":"application.css","mtime":"2018-06-15T08:41:07+01:00","size":159163,"digest":"72b85be22ce44752ae3223277f179126057d283d85319b63a0884340919c030f","integrity":"sha256-crhb4izkR1KuMiMnfxeRJgV9KD2FMZtjoIhDQJGcAw8="},"application-24eb5a6f6907cd6d51867aa32029374bceb5970352f8dd6a5d6e78467734ae3e.css":{"logical_path":"application.css","mtime":"2018-06-15T22:21:52+01:00","size":159198,"digest":"24eb5a6f6907cd6d51867aa32029374bceb5970352f8dd6a5d6e78467734ae3e","integrity":"sha256-JOtab2kHzW1RhnqjICk3S861lwNS+N1qXW54Rnc0rj4="},"application-a2e3a3058977a9d4a1ac506f6f08f100f5e4017b09f4f9a218990e5335105edf.css":{"logical_path":"application.css","mtime":"2018-06-16T07:38:09+01:00","size":159216,"digest":"a2e3a3058977a9d4a1ac506f6f08f100f5e4017b09f4f9a218990e5335105edf","integrity":"sha256-ouOjBYl3qdShrFBvbwjxAPXkAXsJ9PmiGJkOUzUQXt8="},"application-b7c3c85c7fba549c4def95149648e6a55076257f8d519cd85ca6b4f32e2e1e98.css":{"logical_path":"application.css","mtime":"2018-06-16T07:50:20+01:00","size":159155,"digest":"b7c3c85c7fba549c4def95149648e6a55076257f8d519cd85ca6b4f32e2e1e98","integrity":"sha256-t8PIXH+6VJxN75UUlkjmpVB2JX+NUZzYXKa08y4uHpg="},"application-87d877790aacaca40a264cf31b69790bcb5db42f33585e3a886074b1136a9a77.css":{"logical_path":"application.css","mtime":"2018-06-16T08:00:29+01:00","size":159150,"digest":"87d877790aacaca40a264cf31b69790bcb5db42f33585e3a886074b1136a9a77","integrity":"sha256-h9h3eQqsrKQKJkzzG2l5C8tdtC8zWF46iGB0sRNqmnc="},"application-c671f2fc63da707e040772065f6ffd809eea2e6aa96d2deda2fb266c2aefcb54.css":{"logical_path":"application.css","mtime":"2018-06-20T09:04:33+01:00","size":159221,"digest":"c671f2fc63da707e040772065f6ffd809eea2e6aa96d2deda2fb266c2aefcb54","integrity":"sha256-xnHy/GPacH4EB3IGX2/9gJ7qLmqpbS3tovsmbCrvy1Q="},"application-2fe4a7c86314792b299f5abd7f92c4253a36a3a77936c54fc16d6b46197f0a24.css":{"logical_path":"application.css","mtime":"2018-06-29T07:35:30+01:00","size":159365,"digest":"2fe4a7c86314792b299f5abd7f92c4253a36a3a77936c54fc16d6b46197f0a24","integrity":"sha256-L+SnyGMUeSspn1q9f5LEJTo2o6d5NsVPwW1rRhl/CiQ="},"application-e0eff4e3286ed604481e3aa27b12f77337ede71867321467e375b2453681614b.css":{"logical_path":"application.css","mtime":"2018-07-01T10:04:34+01:00","size":159654,"digest":"e0eff4e3286ed604481e3aa27b12f77337ede71867321467e375b2453681614b","integrity":"sha256-4O/04yhu1gRIHjqiexL3czft5xhnMhRn43WyRTaBYUs="},"application-c0280ecfdd1d4025aa1416f7f02154aec3294535be9defd37a73db1bd3bc48ae.css":{"logical_path":"application.css","mtime":"2018-07-01T10:48:15+01:00","size":159710,"digest":"c0280ecfdd1d4025aa1416f7f02154aec3294535be9defd37a73db1bd3bc48ae","integrity":"sha256-wCgOz90dQCWqFBb38CFUrsMpRTW+ne/TenPbG9O8SK4="},"application-d48cc49e57a82f616d7edbe2b5b63cb77e453b2d81e41aca1ddf7bec127e6801.css":{"logical_path":"application.css","mtime":"2018-07-01T12:30:36+01:00","size":159710,"digest":"d48cc49e57a82f616d7edbe2b5b63cb77e453b2d81e41aca1ddf7bec127e6801","integrity":"sha256-1IzEnleoL2FtftvitbY8t35FOy2B5BrKHd977BJ+aAE="},"application-f573c5bffb8be054fd53d1e7ce719d110701630885cfa217597cc9f7940a1369.css":{"logical_path":"application.css","mtime":"2018-07-01T12:33:39+01:00","size":159712,"digest":"f573c5bffb8be054fd53d1e7ce719d110701630885cfa217597cc9f7940a1369","integrity":"sha256-9XPFv/uL4FT9U9HnznGdEQcBYwiFz6IXWXzJ95QKE2k="},"application-975111a244b94f244d8668bbed1b35d14df827425ced7c1298d895fc3f55abc8.css":{"logical_path":"application.css","mtime":"2018-07-01T12:37:54+01:00","size":159725,"digest":"975111a244b94f244d8668bbed1b35d14df827425ced7c1298d895fc3f55abc8","integrity":"sha256-l1ERokS5TyRNhmi77Rs10U34J0Jc7XwSmNiV/D9Vq8g="},"application-79a3210ae2b71f18473976c28e84a586ef0375b9ae2b97318323f9110471e39e.css":{"logical_path":"application.css","mtime":"2018-07-02T11:48:29+01:00","size":159888,"digest":"79a3210ae2b71f18473976c28e84a586ef0375b9ae2b97318323f9110471e39e","integrity":"sha256-eaMhCuK3HxhHOXbCjoSlhu8DdbmuK5cxgyP5EQRx454="},"application-a045471ae51357f0281900c8d6979b993456e353b4d915a105efa9e59417641e.css":{"logical_path":"application.css","mtime":"2018-07-02T17:07:06+01:00","size":159980,"digest":"a045471ae51357f0281900c8d6979b993456e353b4d915a105efa9e59417641e","integrity":"sha256-oEVHGuUTV/AoGQDI1pebmTRW41O02RWhBe+p5ZQXZB4="},"svgs/if_fireworks_2_811451-252dd5302a344063beaa1a3e400aa84b7a54937cca8c7e4d18fe19ad505f8dff.svg":{"logical_path":"svgs/if_fireworks_2_811451.svg","mtime":"2018-07-08T17:49:58+01:00","size":7519,"digest":"252dd5302a344063beaa1a3e400aa84b7a54937cca8c7e4d18fe19ad505f8dff","integrity":"sha256-JS3VMCo0QGO+qho+QAqoS3pUk3zKjH5NGP4ZrVBfjf8="},"application-0667fa855b3dc83ebf7974e8e53bc911d978b0244e6bca5a4b9cc8f0e36a2e28.js":{"logical_path":"application.js","mtime":"2018-07-07T18:04:12+01:00","size":973130,"digest":"0667fa855b3dc83ebf7974e8e53bc911d978b0244e6bca5a4b9cc8f0e36a2e28","integrity":"sha256-Bmf6hVs9yD6/eXTo5TvJEdl4sCROa8paS5zI8ONqLig="},"application-c1729ec04a4c485d7d4fc57f369257eb088a5bef8330e8e5429704e195de4bdb.css":{"logical_path":"application.css","mtime":"2018-07-07T18:04:12+01:00","size":160002,"digest":"c1729ec04a4c485d7d4fc57f369257eb088a5bef8330e8e5429704e195de4bdb","integrity":"sha256-wXKewEpMSF19T8V/NpJX6wiKW++DMOjlQpcE4ZXeS9s="},"application-e8eee8204ca82f7863368188f7e448c5bcfb4b58a79e5024f6118f5e44a940b6.js":{"logical_path":"application.js","mtime":"2018-07-08T13:50:29+01:00","size":943239,"digest":"e8eee8204ca82f7863368188f7e448c5bcfb4b58a79e5024f6118f5e44a940b6","integrity":"sha256-6O7oIEyoL3hjNoGI9+RIxbz7S1innlAk9hGPXkSpQLY="},"application-b3383254d83da8efe5bce81020d6a6c3309d8d76bc5d1cf5ae148218d88f2b51.css":{"logical_path":"application.css","mtime":"2018-07-07T18:04:12+01:00","size":418937,"digest":"b3383254d83da8efe5bce81020d6a6c3309d8d76bc5d1cf5ae148218d88f2b51","integrity":"sha256-szgyVNg9qO/lvOgQINamwzCdjXa8XRz1rhSCGNiPK1E="},"application-2df40e1e5512870152c9e127eabda96c1e446086a2da1e8bf710a6b332818fd5.js":{"logical_path":"application.js","mtime":"2018-07-08T06:22:46+01:00","size":583643,"digest":"2df40e1e5512870152c9e127eabda96c1e446086a2da1e8bf710a6b332818fd5","integrity":"sha256-LfQOHlUShwFSyeEn6r2pbB5EYIai2h6L9xCmszKBj9U="},"application-58dd3244dacd3530af402cf61d03186016ba1295389c268f45efda710b1b2086.css":{"logical_path":"application.css","mtime":"2018-07-08T07:57:56+01:00","size":160182,"digest":"58dd3244dacd3530af402cf61d03186016ba1295389c268f45efda710b1b2086","integrity":"sha256-WN0yRNrNNTCvQCz2HQMYYBa6EpU4nCaPRe/acQsbIIY="},"application-395c5288b099fc822c76892963cc99f4a12ae1ad8a969317d5638d6910e81910.css":{"logical_path":"application.css","mtime":"2018-07-08T13:50:29+01:00","size":419509,"digest":"395c5288b099fc822c76892963cc99f4a12ae1ad8a969317d5638d6910e81910","integrity":"sha256-OVxSiLCZ/IIsdokpY8yZ9KEq4a2KlpMX1WONaRDoGRA="},"application-8758e92bd7a236e476be290ecdf18d36079f59ba4ece0e72ab64b9544d89da9a.css":{"logical_path":"application.css","mtime":"2018-07-08T13:50:29+01:00","size":160223,"digest":"8758e92bd7a236e476be290ecdf18d36079f59ba4ece0e72ab64b9544d89da9a","integrity":"sha256-h1jpK9eiNuR2vikOzfGNNgefWbpOzg5yq2S5VE2J2po="},"application-67e35435666c566b90da3f34164cb822ef9a93d07fb504d042509921e00506e0.css":{"logical_path":"application.css","mtime":"2018-07-11T17:27:48+01:00","size":160271,"digest":"67e35435666c566b90da3f34164cb822ef9a93d07fb504d042509921e00506e0","integrity":"sha256-Z+NUNWZsVmuQ2j80Fky4Iu+ak9B/tQTQQlCZIeAFBuA="},"application-e0648964d29fbbdfe3375307de5d830f5ba2e730137444c59d9daa76656efb7f.js":{"logical_path":"application.js","mtime":"2018-07-19T11:19:34+01:00","size":583774,"digest":"e0648964d29fbbdfe3375307de5d830f5ba2e730137444c59d9daa76656efb7f","integrity":"sha256-4GSJZNKfu9/jN1MH3l2DD1ui5zATdETFnZ2qdmVu+38="},"application-de0d4385f41f7460d0fcae550fd25f1e6c794ae8ffd707a4a3bfe9745781225f.css":{"logical_path":"application.css","mtime":"2018-07-16T12:08:24+01:00","size":160316,"digest":"de0d4385f41f7460d0fcae550fd25f1e6c794ae8ffd707a4a3bfe9745781225f","integrity":"sha256-3g1DhfQfdGDQ/K5VD9JfHmx5Suj/1weko7/pdFeBIl8="},"application-6aad657850f93f14c537c26767f5a24ef6bc00eb41f46a71b407890cb50cc593.css":{"logical_path":"application.css","mtime":"2018-07-16T13:13:37+01:00","size":160520,"digest":"6aad657850f93f14c537c26767f5a24ef6bc00eb41f46a71b407890cb50cc593","integrity":"sha256-aq1leFD5PxTFN8JnZ/WiTva8AOtB9GpxtAeJDLUMxZM="},"application-61f219421efdf3a5c49cf9adb5765b931246a861aef406a735b6565f00f8254a.css":{"logical_path":"application.css","mtime":"2018-07-16T13:44:50+01:00","size":160521,"digest":"61f219421efdf3a5c49cf9adb5765b931246a861aef406a735b6565f00f8254a","integrity":"sha256-YfIZQh7986XEnPmttXZbkxJGqGGu9AanNbZWXwD4JUo="},"application-2179c7ca432fc29c7313a01bb526f7d8c25fc67e09fe5ca16a311495fed69c24.css":{"logical_path":"application.css","mtime":"2018-07-16T19:56:50+01:00","size":160547,"digest":"2179c7ca432fc29c7313a01bb526f7d8c25fc67e09fe5ca16a311495fed69c24","integrity":"sha256-IXnHykMvwpxzE6AbtSb32MJfxn4J/lyhajEUlf7WnCQ="},"application-646ba9a5acd360712b7c4f293b856150890ef9c8b45c45d2aa1c3840211b4eda.css":{"logical_path":"application.css","mtime":"2018-07-16T22:52:56+01:00","size":161272,"digest":"646ba9a5acd360712b7c4f293b856150890ef9c8b45c45d2aa1c3840211b4eda","integrity":"sha256-ZGuppazTYHErfE8pO4VhUIkO+ci0XEXSqhw4QCEbTto="},"application-5e8c6ca1fc3139bf520fe83e2682fae30e6de94140577d31867e6385d08a38c9.css":{"logical_path":"application.css","mtime":"2018-07-16T23:00:51+01:00","size":161054,"digest":"5e8c6ca1fc3139bf520fe83e2682fae30e6de94140577d31867e6385d08a38c9","integrity":"sha256-XoxsofwxOb9SD+g+JoL64w5t6UFAV30xhn5jhdCKOMk="},"application-57093e3e88b06794912b531b4d2a709bb6bfbc0e090a2e179fc0c68976b2b035.css":{"logical_path":"application.css","mtime":"2018-07-18T21:05:17+01:00","size":161091,"digest":"57093e3e88b06794912b531b4d2a709bb6bfbc0e090a2e179fc0c68976b2b035","integrity":"sha256-Vwk+PoiwZ5SRK1MbTSpwm7a/vA4JCi4Xn8DGiXaysDU="},"application-452e46ea84af39f6029cdf6dbe294d889007cb94939feb4ef68c0a971a940ee3.css":{"logical_path":"application.css","mtime":"2018-07-18T21:20:30+01:00","size":161133,"digest":"452e46ea84af39f6029cdf6dbe294d889007cb94939feb4ef68c0a971a940ee3","integrity":"sha256-RS5G6oSvOfYCnN9tvilNiJAHy5STn+tO9owKlxqUDuM="},"application-e1a8d82884ab3448b9104eeeecc183102b145f7c37b601a098bf6cd233db039c.css":{"logical_path":"application.css","mtime":"2018-07-18T21:37:35+01:00","size":161158,"digest":"e1a8d82884ab3448b9104eeeecc183102b145f7c37b601a098bf6cd233db039c","integrity":"sha256-4ajYKISrNEi5EE7u7MGDECsUX3w3tgGgmL9s0jPbA5w="},"application-8650135c8e6568fbdab37e8061253f40fe6607e36084694560606c2ea3c19e32.css":{"logical_path":"application.css","mtime":"2018-07-18T21:44:48+01:00","size":161158,"digest":"8650135c8e6568fbdab37e8061253f40fe6607e36084694560606c2ea3c19e32","integrity":"sha256-hlATXI5laPvas36AYSU/QP5mB+NghGlFYGBsLqPBnjI="},"application-5e776e15daec6c63d615e1ceccdc6a4bce76263af7c0796192f43c7608b469c4.css":{"logical_path":"application.css","mtime":"2018-07-19T11:22:09+01:00","size":161000,"digest":"5e776e15daec6c63d615e1ceccdc6a4bce76263af7c0796192f43c7608b469c4","integrity":"sha256-XnduFdrsbGPWFeHOzNxqS852Jjr3wHlhkvQ8dgi0acQ="},"application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js":{"logical_path":"application.js","mtime":"2018-07-19T11:42:42+01:00","size":584737,"digest":"1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e","integrity":"sha256-H76onjpqAtNUPiUuSUkv5M37ivNBeou1193e/aK/mD4="},"application-b0aa17fc4e04b249f0e156486479ccdb521bc66caded8f563feff1b8e165da58.css":{"logical_path":"application.css","mtime":"2018-07-19T11:50:03+01:00","size":166480,"digest":"b0aa17fc4e04b249f0e156486479ccdb521bc66caded8f563feff1b8e165da58","integrity":"sha256-sKoX/E4Esknw4VZIZHnM21Ibxmyt7Y9WP+/xuOFl2lg="}},"assets":{"layers-2x.png":"layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png","layers.png":"layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png","marker-icon-2x.png":"marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png","marker-icon.png":"marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png","marker-shadow.png":"marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png","application.js":"application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js","leaflet-src.js.map":"leaflet-src.js-6eed528b5678ee4f34b8be267a8da5d14734d58d56baeea6a31e9819e6630775.map","application.css":"application-b0aa17fc4e04b249f0e156486479ccdb521bc66caded8f563feff1b8e165da58.css","leaflet/layers-2x.png":"leaflet/layers-2x-066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf.png","leaflet/layers.png":"leaflet/layers-1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6.png","leaflet/marker-icon-2x-violet.png":"leaflet/marker-icon-2x-violet-d2d4278dacf3fea3d5e9fc2fffbba8a840bc1310cc1457198426e2c11feb4e44.png","leaflet/marker-icon-2x.png":"leaflet/marker-icon-2x-00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528.png","leaflet/marker-icon-violet.png":"leaflet/marker-icon-violet-6892da1a4188e5ccf68e67aae2a94fbae14ad75915b31555935130ae4fcc4145.png","leaflet/marker-icon.png":"leaflet/marker-icon-574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437.png","leaflet/marker-shadow.png":"leaflet/marker-shadow-264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da.png","icons/if_icon-calendar_211633.svg":"icons/if_icon-calendar_211633-96d8b4b40a7bc7af5f5821257083b42a158986c679e5aa3144c1fb5c267f757e.svg","icons/if_icon-ios7-location-outline_211766.svg":"icons/if_icon-ios7-location-outline_211766-2185392dfb3feb3ac53b72a00302af749bcc5ecae6a08bf0a32eb222dc4afc70.svg","icons/if_icon-link_211853.svg":"icons/if_icon-link_211853-837f4c6d43b685637636c5118f2f021e586e69457cc270433e4278cb1b482cf8.svg","samples/adam-whitlock-270558-unsplash.jpg":"samples/adam-whitlock-270558-unsplash-afcf2f17063f371ec0ad495170db234a9b7dc4ab793c648025dceabd39b39047.jpg","samples/cristina-cerda-43101-unsplash.jpg":"samples/cristina-cerda-43101-unsplash-f65c2cb6817ac07da16d94e94ab217006aeb23cb918d824075bbbd00fbe6c115.jpg","samples/sample_groups/bass-music-guild.jpg":"samples/sample_groups/bass-music-guild-55bd438bb8837202e04855f077e9815beb52b00242247375542c469e998fa26a.jpg","samples/sample_groups/bookshop.jpg":"samples/sample_groups/bookshop-c734553638ed70a0de277412f4b3b93551c310b4fc953c5e7cc16cfb27c8732e.jpg","samples/sample_groups/bruce-christianson-558321-unsplash.jpg":"samples/sample_groups/bruce-christianson-558321-unsplash-58bff7ef36626f82681ff87f8445f0dfca11df14d5a59353aa4bbb9f6d635ed8.jpg","samples/sample_groups/chillhop.jpg":"samples/sample_groups/chillhop-a262d428b5dd361c2c5867601c0db60e76f63adf4f34e6b3637b8ce8d22cf8e3.jpg","samples/sample_groups/christin-hume-505815-unsplash.jpg":"samples/sample_groups/christin-hume-505815-unsplash-a145ea55ff8e966f0a511746530c8f1dce59146ebad2f5987d2aecf717d1a593.jpg","samples/sample_groups/clem-onojeghuo-143466-unsplash.jpg":"samples/sample_groups/clem-onojeghuo-143466-unsplash-0c65f1a587e83b04320a01ed683f535506b155e843dd0ed873e1fa3c0d42e34a.jpg","samples/sample_groups/coding.jpg":"samples/sample_groups/coding-1237c6604583a7eaffc93c4d8f185848b318bea746c617bed81637d2eae47aa8.jpg","samples/sample_groups/edm.jpg":"samples/sample_groups/edm-b92af01154f8fb07f09427f71f165afa008c765cb5f67a5cc1aab9099d030b36.jpg","samples/sample_groups/emily-sea-198689-unsplash.jpg":"samples/sample_groups/emily-sea-198689-unsplash-af437c564038e5b22fe921c162ff6c36adb72e9ba0b0df3565b10b9e6363a580.jpg","samples/sample_groups/ingrid-hofstra-527954-unsplash.jpg":"samples/sample_groups/ingrid-hofstra-527954-unsplash-602149ba68519f7490f69a7b9e9dddc0687e21a67e97ea2efc01b0d97754b0df.jpg","samples/sample_groups/plain-air-oregon.jpg":"samples/sample_groups/plain-air-oregon-ca081dbf44166b734c538cd8d3e956998c6dd91ea486c95a86d5a23110fb3152.jpg","samples/sample_groups/progressive.jpg":"samples/sample_groups/progressive-abeeb0370275d4109a250e65cf8bc63a037508b391fa0311887db54687a4d3b4.jpg","samples/sample_groups/raveup.jpg":"samples/sample_groups/raveup-4c21c79980b29d5f17f6cbf4a977eb092ecbdefc4a29d6b3224e09363883c206.jpg","samples/sample_groups/sketching.jpg":"samples/sample_groups/sketching-fbf40836cad94e53e589db7d30f26b5b107c21dcfd5a5c3b1fc141d8eef7c23d.jpg","samples/sample_groups/taras-shypka-424932-unsplash.jpg":"samples/sample_groups/taras-shypka-424932-unsplash-7b296b814864dacbc54fe10ee42b53c6994caeb41fb4ff05bf804c26d57db564.jpg","samples/sample_groups/tea-sketchers.jpg":"samples/sample_groups/tea-sketchers-88c490aa53bc544cc4a8097c567d8832a62ca4b5fac87e111dafab1ce2da4fbc.jpg","samples/sample_groups/tenerife-edm.jpg":"samples/sample_groups/tenerife-edm-eb978c93ede0f3b75316049a14540db2070bc3bf58a6df1b0436b9325fdfa7c8.jpg","samples/sample_groups/tenerife.jpg":"samples/sample_groups/tenerife-5b615785a30eb88806d0091e95fa53bcd31f00b5000fcab1b17870748989a122.jpg","samples/sample_groups/tomasz-wozniak-484204-unsplash.jpg":"samples/sample_groups/tomasz-wozniak-484204-unsplash-7171c240ea766b47054c895f5af478e5864197603d16f36934316758cd087eff.jpg","samples/sample_groups/watermarbling.jpg":"samples/sample_groups/watermarbling-5892e43e9eb8200f1c755432ccc7421a14c3f1ef6c8d7c4277845c0f57dc2001.jpg","samples/sample_events/borna-bevanda-377277-unsplash.jpg":"samples/sample_events/borna-bevanda-377277-unsplash-ad16a54ca4101c38f55cb20ae4181487c0c8abb0f5f7194fb3de0b9cd1be13cd.jpg","lazysizes.js":"lazysizes-b7e3b36049ed52a84ad33b8b24bbb0780921973e325ac91160a5f33c3de710e3.js","samples/sample_groups/alp-allen-altiner-352232-unsplash.jpg":"samples/sample_groups/alp-allen-altiner-352232-unsplash-c2d43e0c747321549890df1b31e1d44bdc805b828aa21479ce00d5cee29d35ea.jpg","samples/sample_groups/chase-clark-509092-unsplash.jpg":"samples/sample_groups/chase-clark-509092-unsplash-f0a33543e15ddeb86ed13045faf19390fe197371d4d35f14297527473f15f8ae.jpg","samples/sample_groups/chris-ried-512801-unsplash.jpg":"samples/sample_groups/chris-ried-512801-unsplash-9dc67be4326796aeeff2e1642028be70b71aaea8764a67a26c6768dcc1b44955.jpg","samples/sample_groups/lin-mei-159435-unsplash.jpg":"samples/sample_groups/lin-mei-159435-unsplash-b6dad05147162107c1518ae3ade1db190facc365b845de8febe55e4b229ccb1b.jpg","samples/sample_groups/mpho-mojapelo-127562-unsplash.jpg":"samples/sample_groups/mpho-mojapelo-127562-unsplash-1128423da8c51adfe26648b15d51c78371f0d73e05768f0d8e1a4ef0ff574658.jpg","samples/sample_groups/sergio-cavalcanti-350268-unsplash.jpg":"samples/sample_groups/sergio-cavalcanti-350268-unsplash-1b9e355e5893d246d36d1d77112aaae2e50590c2737cdc0397d76094b9d8cb50.jpg","svgs/if_fireworks_2_811451.svg":"svgs/if_fireworks_2_811451-252dd5302a344063beaa1a3e400aa84b7a54937cca8c7e4d18fe19ad505f8dff.svg"}} \ No newline at end of file diff --git a/public/assets/application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js b/public/assets/application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js new file mode 100644 index 00000000..03dee610 --- /dev/null +++ b/public/assets/application-1fbea89e3a6a02d3543e252e49492fe4cdfb8af3417a8bb5d7dddefda2bf983e.js @@ -0,0 +1,18 @@ +(function(){var t=this;(function(){(function(){this.Rails={linkClickSelector:"a[data-confirm], a[data-method], a[data-remote]:not([disabled]), a[data-disable-with], a[data-disable]",buttonClickSelector:{selector:"button[data-remote]:not([form]), button[data-confirm]:not([form])",exclude:"form button"},inputChangeSelector:"select[data-remote], input[data-remote], textarea[data-remote]",formSubmitSelector:"form",formInputClickSelector:"form input[type=submit], form input[type=image], form button[type=submit], form button:not([type]), input[type=submit][form], input[type=image][form], button[type=submit][form], button[form]:not([type])",formDisableSelector:"input[data-disable-with]:enabled, button[data-disable-with]:enabled, textarea[data-disable-with]:enabled, input[data-disable]:enabled, button[data-disable]:enabled, textarea[data-disable]:enabled",formEnableSelector:"input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled, input[data-disable]:disabled, button[data-disable]:disabled, textarea[data-disable]:disabled",fileInputSelector:"input[name][type=file]:not([disabled])",linkDisableSelector:"a[data-disable-with], a[data-disable]",buttonDisableSelector:"button[data-remote][data-disable-with], button[data-remote][data-disable]"}}).call(this)}).call(t);var y=t.Rails;(function(){(function(){var i,n;n=Element.prototype.matches||Element.prototype.matchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector||Element.prototype.oMatchesSelector||Element.prototype.webkitMatchesSelector,y.matches=function(t,e){return null!=e.exclude?n.call(t,e.selector)&&!n.call(t,e.exclude):n.call(t,e)},i="_ujsData",y.getData=function(t,e){var n;return null!=(n=t[i])?n[e]:void 0},y.setData=function(t,e,n){return null==t[i]&&(t[i]={}),t[i][e]=n},y.$=function(t){return Array.prototype.slice.call(document.querySelectorAll(t))}}).call(this),function(){var n,i,o;n=y.$,o=y.csrfToken=function(){var t;return(t=document.querySelector("meta[name=csrf-token]"))&&t.content},i=y.csrfParam=function(){var t;return(t=document.querySelector("meta[name=csrf-param]"))&&t.content},y.CSRFProtection=function(t){var e;if(null!=(e=o()))return t.setRequestHeader("X-CSRF-Token",e)},y.refreshCSRFTokens=function(){var t,e;if(e=o(),t=i(),null!=e&&null!=t)return n('form input[name="'+t+'"]').forEach(function(t){return t.value=e})}}.call(this),function(){var o,e,r;r=y.matches,"function"!=typeof(o=window.CustomEvent)&&((o=function(t,e){var n;return(n=document.createEvent("CustomEvent")).initCustomEvent(t,e.bubbles,e.cancelable,e.detail),n}).prototype=window.Event.prototype),e=y.fire=function(t,e,n){var i;return i=new o(e,{bubbles:!0,cancelable:!0,detail:n}),t.dispatchEvent(i),!i.defaultPrevented},y.stopEverything=function(t){return e(t.target,"ujs:everythingStopped"),t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation()},y.delegate=function(t,n,e,i){return t.addEventListener(e,function(t){var e;for(e=t.target;e instanceof Element&&!r(e,n);)e=e.parentNode;if(e instanceof Element&&!1===i.call(e,t))return t.preventDefault(),t.stopPropagation()})}}.call(this),function(){var e,i,t,o,r;i=y.CSRFProtection,y.fire,e={"*":"*/*",text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript",script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},y.ajax=function(e){var n;return e=o(e),n=t(e,function(){var t;return t=r(n.response,n.getResponseHeader("Content-Type")),2===Math.floor(n.status/100)?"function"==typeof e.success&&e.success(t,n.statusText,n):"function"==typeof e.error&&e.error(t,n.statusText,n),"function"==typeof e.complete?e.complete(n,n.statusText):void 0}),!("function"!=typeof e.beforeSend||!e.beforeSend(n,e))&&(n.readyState===XMLHttpRequest.OPENED?n.send(e.data):void 0)},o=function(t){return t.url=t.url||location.href,t.type=t.type.toUpperCase(),"GET"===t.type&&t.data&&(t.url.indexOf("?")<0?t.url+="?"+t.data:t.url+="&"+t.data),null==e[t.dataType]&&(t.dataType="*"),t.accept=e[t.dataType],"*"!==t.dataType&&(t.accept+=", */*; q=0.01"),t},t=function(t,e){var n;return(n=new XMLHttpRequest).open(t.type,t.url,!0),n.setRequestHeader("Accept",t.accept),"string"==typeof t.data&&n.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8"),t.crossDomain||n.setRequestHeader("X-Requested-With","XMLHttpRequest"),i(n),n.withCredentials=!!t.withCredentials,n.onreadystatechange=function(){if(n.readyState===XMLHttpRequest.DONE)return e(n)},n},r=function(t,e){var n,i;if("string"==typeof t&&"string"==typeof e)if(e.match(/\bjson\b/))try{t=JSON.parse(t)}catch(o){}else if(e.match(/\b(?:java|ecma)script\b/))(i=document.createElement("script")).text=t,document.head.appendChild(i).parentNode.removeChild(i);else if(e.match(/\b(xml|html|svg)\b/)){n=new DOMParser,e=e.replace(/;.+/,"");try{t=n.parseFromString(t,e)}catch(o){}}return t},y.href=function(t){return t.href},y.isCrossDomain=function(t){var e,n;(e=document.createElement("a")).href=location.href,n=document.createElement("a");try{return n.href=t,!((!n.protocol||":"===n.protocol)&&!n.host||e.protocol+"//"+e.host==n.protocol+"//"+n.host)}catch(i){return i,!0}}}.call(this),function(){var o,r;o=y.matches,r=function(t){return Array.prototype.slice.call(t)},y.serializeElement=function(t,e){var n,i;return n=[t],o(t,"form")&&(n=r(t.elements)),i=[],n.forEach(function(e){if(e.name&&!e.disabled)return o(e,"select")?r(e.options).forEach(function(t){if(t.selected)return i.push({name:e.name,value:t.value})}):e.checked||-1===["radio","checkbox","submit"].indexOf(e.type)?i.push({name:e.name,value:e.value}):void 0}),e&&i.push(e),i.map(function(t){return null!=t.name?encodeURIComponent(t.name)+"="+encodeURIComponent(t.value):t}).join("&")},y.formElements=function(t,e){return o(t,"form")?r(t.elements).filter(function(t){return o(t,e)}):r(t.querySelectorAll(e))}}.call(this),function(){var e,r,n;r=y.fire,n=y.stopEverything,y.handleConfirm=function(t){if(!e(this))return n(t)},e=function(t){var e,n,i;if(!(i=t.getAttribute("data-confirm")))return!0;if(e=!1,r(t,"confirm")){try{e=confirm(i)}catch(o){}n=r(t,"confirm:complete",[e])}return e&&n}}.call(this),function(){var n,i,o,r,s,a,e,u,l,c,h;l=y.matches,u=y.getData,c=y.setData,h=y.stopEverything,e=y.formElements,y.handleDisabledElement=function(t){if(this.disabled)return h(t)},y.enableElement=function(t){var e;return e=t instanceof Event?t.target:t,l(e,y.linkDisableSelector)?a(e):l(e,y.buttonDisableSelector)||l(e,y.formEnableSelector)?r(e):l(e,y.formSubmitSelector)?s(e):void 0},y.disableElement=function(t){var e;return e=t instanceof Event?t.target:t,l(e,y.linkDisableSelector)?o(e):l(e,y.buttonDisableSelector)||l(e,y.formDisableSelector)?n(e):l(e,y.formSubmitSelector)?i(e):void 0},o=function(t){var e;return null!=(e=t.getAttribute("data-disable-with"))&&(c(t,"ujs:enable-with",t.innerHTML),t.innerHTML=e),t.addEventListener("click",h),c(t,"ujs:disabled",!0)},a=function(t){var e;return null!=(e=u(t,"ujs:enable-with"))&&(t.innerHTML=e,c(t,"ujs:enable-with",null)),t.removeEventListener("click",h),c(t,"ujs:disabled",null)},i=function(t){return e(t,y.formDisableSelector).forEach(n)},n=function(t){var e;return null!=(e=t.getAttribute("data-disable-with"))&&(l(t,"button")?(c(t,"ujs:enable-with",t.innerHTML),t.innerHTML=e):(c(t,"ujs:enable-with",t.value),t.value=e)),t.disabled=!0,c(t,"ujs:disabled",!0)},s=function(t){return e(t,y.formEnableSelector).forEach(r)},r=function(t){var e;return null!=(e=u(t,"ujs:enable-with"))&&(l(t,"button")?t.innerHTML=e:t.value=e,c(t,"ujs:enable-with",null)),t.disabled=!1,c(t,"ujs:disabled",null)}}.call(this),function(){var u;u=y.stopEverything,y.handleMethod=function(t){var e,n,i,o,r,s,a;if(a=(s=this).getAttribute("data-method"))return r=y.href(s),n=y.csrfToken(),e=y.csrfParam(),i=document.createElement("form"),o="",null==e||null==n||y.isCrossDomain(r)||(o+=""),o+='',i.method="post",i.action=r,i.target=s.target,i.innerHTML=o,i.style.display="none",document.body.appendChild(i),i.querySelector('[type="submit"]').click(),u(t)}}.call(this),function(){var u,l,c,h,d,p,f,m,g,v=[].slice;p=y.matches,c=y.getData,m=y.setData,l=y.fire,g=y.stopEverything,u=y.ajax,h=y.isCrossDomain,f=y.serializeElement,d=function(t){var e;return null!=(e=t.getAttribute("data-remote"))&&"false"!==e},y.handleRemote=function(t){var e,n,i,o,r,s,a;return!d(o=this)||(l(o,"ajax:before")?(a=o.getAttribute("data-with-credentials"),i=o.getAttribute("data-type")||"script",p(o,y.formSubmitSelector)?(e=c(o,"ujs:submit-button"),r=c(o,"ujs:submit-button-formmethod")||o.method,s=c(o,"ujs:submit-button-formaction")||o.getAttribute("action")||location.href,"GET"===r.toUpperCase()&&(s=s.replace(/\?.*$/,"")),"multipart/form-data"===o.enctype?(n=new FormData(o),null!=e&&n.append(e.name,e.value)):n=f(o,e),m(o,"ujs:submit-button",null),m(o,"ujs:submit-button-formmethod",null),m(o,"ujs:submit-button-formaction",null)):p(o,y.buttonClickSelector)||p(o,y.inputChangeSelector)?(r=o.getAttribute("data-method"),s=o.getAttribute("data-url"),n=f(o,o.getAttribute("data-params"))):(r=o.getAttribute("data-method"),s=y.href(o),n=o.getAttribute("data-params")),u({type:r||"GET",url:s,data:n,dataType:i,beforeSend:function(t,e){return l(o,"ajax:beforeSend",[t,e])?l(o,"ajax:send",[t]):(l(o,"ajax:stopped"),!1)},success:function(){var t;return t=1<=arguments.length?v.call(arguments,0):[],l(o,"ajax:success",t)},error:function(){var t;return t=1<=arguments.length?v.call(arguments,0):[],l(o,"ajax:error",t)},complete:function(){var t;return t=1<=arguments.length?v.call(arguments,0):[],l(o,"ajax:complete",t)},crossDomain:h(s),withCredentials:null!=a&&"false"!==a}),g(t)):(l(o,"ajax:stopped"),!1))},y.formSubmitButtonClick=function(){var t,e;if(e=(t=this).form)return t.name&&m(e,"ujs:submit-button",{name:t.name,value:t.value}),m(e,"ujs:formnovalidate-button",t.formNoValidate),m(e,"ujs:submit-button-formaction",t.getAttribute("formaction")),m(e,"ujs:submit-button-formmethod",t.getAttribute("formmethod"))},y.handleMetaClick=function(t){var e,n,i;if(i=((n=this).getAttribute("data-method")||"GET").toUpperCase(),e=n.getAttribute("data-params"),(t.metaKey||t.ctrlKey)&&"GET"===i&&!e)return t.stopImmediatePropagation()}}.call(this),function(){var t,i,e,n,o,r,s,a,u,l,c,h,d,p;r=y.fire,e=y.delegate,a=y.getData,t=y.$,p=y.refreshCSRFTokens,i=y.CSRFProtection,o=y.enableElement,n=y.disableElement,l=y.handleDisabledElement,u=y.handleConfirm,d=y.handleRemote,s=y.formSubmitButtonClick,c=y.handleMetaClick,h=y.handleMethod,"undefined"==typeof jQuery||null===jQuery||null==jQuery.ajax||jQuery.rails||(jQuery.rails=y,jQuery.ajaxPrefilter(function(t,e,n){if(!t.crossDomain)return i(n)})),y.start=function(){if(window._rails_loaded)throw new Error("rails-ujs has already been loaded!");return window.addEventListener("pageshow",function(){return t(y.formEnableSelector).forEach(function(t){if(a(t,"ujs:disabled"))return o(t)}),t(y.linkDisableSelector).forEach(function(t){if(a(t,"ujs:disabled"))return o(t)})}),e(document,y.linkDisableSelector,"ajax:complete",o),e(document,y.linkDisableSelector,"ajax:stopped",o),e(document,y.buttonDisableSelector,"ajax:complete",o),e(document,y.buttonDisableSelector,"ajax:stopped",o),e(document,y.linkClickSelector,"click",l),e(document,y.linkClickSelector,"click",u),e(document,y.linkClickSelector,"click",c),e(document,y.linkClickSelector,"click",n),e(document,y.linkClickSelector,"click",d),e(document,y.linkClickSelector,"click",h),e(document,y.buttonClickSelector,"click",l),e(document,y.buttonClickSelector,"click",u),e(document,y.buttonClickSelector,"click",n),e(document,y.buttonClickSelector,"click",d),e(document,y.inputChangeSelector,"change",l),e(document,y.inputChangeSelector,"change",u),e(document,y.inputChangeSelector,"change",d),e(document,y.formSubmitSelector,"submit",l),e(document,y.formSubmitSelector,"submit",u),e(document,y.formSubmitSelector,"submit",d),e(document,y.formSubmitSelector,"submit",function(t){return setTimeout(function(){return n(t)},13)}),e(document,y.formSubmitSelector,"ajax:send",n),e(document,y.formSubmitSelector,"ajax:complete",o),e(document,y.formInputClickSelector,"click",l),e(document,y.formInputClickSelector,"click",u),e(document,y.formInputClickSelector,"click",s),document.addEventListener("DOMContentLoaded",p),window._rails_loaded=!0},window.Rails===y&&r(document,"rails:attachBindings")&&y.start()}.call(this)}).call(this),"object"==typeof module&&module.exports?module.exports=y:"function"==typeof define&&define.amd&&define(y)}).call(this),function(t,e){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=t.document?e(t,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(t)}("undefined"!=typeof window?window:this,function(E,t){"use strict";function m(t,e,n){var i,o=(e=e||st).createElement("script");if(o.text=t,n)for(i in bt)n[i]&&(o[i]=n[i]);e.head.appendChild(o).parentNode.removeChild(o)}function g(t){return null==t?t+"":"object"==typeof t||"function"==typeof t?dt[pt.call(t)]||"object":typeof t}function a(t){var e=!!t&&"length"in t&&t.length,n=g(t);return!yt(t)&&!_t(t)&&("array"===n||0===e||"number"==typeof e&&0A.cacheLength&&delete n[i.shift()],n[t+" "]=e}var i=[];return n}function u(t){return t[z]=!0,t}function o(t){var e=I.createElement("fieldset");try{return!!t(e)}catch(n){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function e(t,e){for(var n=t.split("|"),i=n.length;i--;)A.attrHandle[n[i]]=e}function l(t,e){var n=e&&t,i=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(i)return i;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function i(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function r(n){return function(t){var e=t.nodeName.toLowerCase();return("input"===e||"button"===e)&&t.type===n}}function s(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&Et(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function a(s){return u(function(r){return r=+r,u(function(t,e){for(var n,i=s([],t.length,r),o=i.length;o--;)t[n=i[o]]&&(t[n]=!(e[n]=t[n]))})})}function f(t){return t&&"undefined"!=typeof t.getElementsByTagName&&t}function c(){}function m(t){for(var e=0,n=t.length,i="";e+~]|"+nt+")"+nt+"*"),ct=new RegExp("="+nt+"*([^\\]'\"]*?)"+nt+"*\\]","g"),ht=new RegExp(rt),dt=new RegExp("^"+it+"$"),pt={ID:new RegExp("^#("+it+")"),CLASS:new RegExp("^\\.("+it+")"),TAG:new RegExp("^("+it+"|[*])"),ATTR:new RegExp("^"+ot),PSEUDO:new RegExp("^"+rt),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+nt+"*(even|odd|(([+-]|)(\\d*)n|)"+nt+"*(?:([+-]|)"+nt+"*(\\d+)|))"+nt+"*\\)|)","i"),bool:new RegExp("^(?:"+et+")$","i"),needsContext:new RegExp("^"+nt+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+nt+"*((?:-\\d)?\\d*)"+nt+"*\\)|)(?=[^-]|$)","i")},ft=/^(?:input|select|textarea|button)$/i,mt=/^h\d$/i,gt=/^[^{]+\{\s*\[native \w/,vt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,yt=/[+~]/,_t=new RegExp("\\\\([\\da-f]{1,6}"+nt+"?|("+nt+")|.)","ig"),bt=function(t,e,n){var i="0x"+e-65536;return i!=i||n?e:i<0?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320)},wt=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,xt=function(t,e){return e?"\0"===t?"\ufffd":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},At=function(){O()},Et=h(function(t){return!0===t.disabled&&("form"in t||"label"in t)},{dir:"parentNode",next:"legend"});try{X.apply(J=Q.call(H.childNodes),H.childNodes),J[H.childNodes.length].nodeType}catch(Ct){X={apply:J.length?function(t,e){$.apply(t,Q.call(e))}:function(t,e){for(var n=t.length,i=0;t[n++]=e[i++];);t.length=n-1}}}for(v in x=b.support={},C=b.isXML=function(t){var e=t&&(t.ownerDocument||t).documentElement;return!!e&&"HTML"!==e.nodeName},O=b.setDocument=function(t){var e,n,i=t?t.ownerDocument||t:H;return i!==I&&9===i.nodeType&&i.documentElement&&(N=(I=i).documentElement,R=!C(I),H!==I&&(n=I.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",At,!1):n.attachEvent&&n.attachEvent("onunload",At)),x.attributes=o(function(t){return t.className="i",!t.getAttribute("className")}),x.getElementsByTagName=o(function(t){return t.appendChild(I.createComment("")),!t.getElementsByTagName("*").length}),x.getElementsByClassName=gt.test(I.getElementsByClassName),x.getById=o(function(t){return N.appendChild(t).id=z,!I.getElementsByName||!I.getElementsByName(z).length}),x.getById?(A.filter.ID=function(t){var e=t.replace(_t,bt);return function(t){return t.getAttribute("id")===e}},A.find.ID=function(t,e){if("undefined"!=typeof e.getElementById&&R){var n=e.getElementById(t);return n?[n]:[]}}):(A.filter.ID=function(t){var n=t.replace(_t,bt);return function(t){var e="undefined"!=typeof t.getAttributeNode&&t.getAttributeNode("id");return e&&e.value===n}},A.find.ID=function(t,e){if("undefined"!=typeof e.getElementById&&R){var n,i,o,r=e.getElementById(t);if(r){if((n=r.getAttributeNode("id"))&&n.value===t)return[r];for(o=e.getElementsByName(t),i=0;r=o[i++];)if((n=r.getAttributeNode("id"))&&n.value===t)return[r]}return[]}}),A.find.TAG=x.getElementsByTagName?function(t,e){return"undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t):x.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,i=[],o=0,r=e.getElementsByTagName(t);if("*"===t){for(;n=r[o++];)1===n.nodeType&&i.push(n);return i}return r},A.find.CLASS=x.getElementsByClassName&&function(t,e){if("undefined"!=typeof e.getElementsByClassName&&R)return e.getElementsByClassName(t)},B=[],M=[],(x.qsa=gt.test(I.querySelectorAll))&&(o(function(t){N.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&M.push("[*^$]="+nt+"*(?:''|\"\")"),t.querySelectorAll("[selected]").length||M.push("\\["+nt+"*(?:value|"+et+")"),t.querySelectorAll("[id~="+z+"-]").length||M.push("~="),t.querySelectorAll(":checked").length||M.push(":checked"),t.querySelectorAll("a#"+z+"+*").length||M.push(".#.+[+~]")}),o(function(t){t.innerHTML="";var e=I.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&M.push("name"+nt+"*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&M.push(":enabled",":disabled"),N.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&M.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),M.push(",.*:")})),(x.matchesSelector=gt.test(j=N.matches||N.webkitMatchesSelector||N.mozMatchesSelector||N.oMatchesSelector||N.msMatchesSelector))&&o(function(t){x.disconnectedMatch=j.call(t,"*"),j.call(t,"[s!='']:x"),B.push("!=",rt)}),M=M.length&&new RegExp(M.join("|")),B=B.length&&new RegExp(B.join("|")),e=gt.test(N.compareDocumentPosition),F=e||gt.test(N.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,i=e&&e.parentNode;return t===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):t.compareDocumentPosition&&16&t.compareDocumentPosition(i)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},K=e?function(t,e){if(t===e)return D=!0,0;var n=!t.compareDocumentPosition-!e.compareDocumentPosition;return n||(1&(n=(t.ownerDocument||t)===(e.ownerDocument||e)?t.compareDocumentPosition(e):1)||!x.sortDetached&&e.compareDocumentPosition(t)===n?t===I||t.ownerDocument===H&&F(H,t)?-1:e===I||e.ownerDocument===H&&F(H,e)?1:P?tt(P,t)-tt(P,e):0:4&n?-1:1)}:function(t,e){if(t===e)return D=!0,0;var n,i=0,o=t.parentNode,r=e.parentNode,s=[t],a=[e];if(!o||!r)return t===I?-1:e===I?1:o?-1:r?1:P?tt(P,t)-tt(P,e):0;if(o===r)return l(t,e);for(n=t;n=n.parentNode;)s.unshift(n);for(n=e;n=n.parentNode;)a.unshift(n);for(;s[i]===a[i];)i++;return i?l(s[i],a[i]):s[i]===H?-1:a[i]===H?1:0}),I},b.matches=function(t,e){return b(t,null,null,e)},b.matchesSelector=function(t,e){if((t.ownerDocument||t)!==I&&O(t),e=e.replace(ct,"='$1']"),x.matchesSelector&&R&&!Z[e+" "]&&(!B||!B.test(e))&&(!M||!M.test(e)))try{var n=j.call(t,e);if(n||x.disconnectedMatch||t.document&&11!==t.document.nodeType)return n}catch(Ct){}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(_t,bt),t[3]=(t[3]||t[4]||t[5]||"").replace(_t,bt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||b.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&b.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return pt.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&ht.test(n)&&(e=T(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(_t,bt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=V[t+" "];return e||(e=new RegExp("(^|"+nt+")"+t+"("+nt+"|$)"))&&V(t,function(t){return e.test("string"==typeof t.className&&t.className||"undefined"!=typeof t.getAttribute&&t.getAttribute("class")||"")})},ATTR:function(n,i,o){return function(t){var e=b.attr(t,n);return null==e?"!="===i:!i||(e+="","="===i?e===o:"!="===i?e!==o:"^="===i?o&&0===e.indexOf(o):"*="===i?o&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;xt.filter=function(t,e,n){var i=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===i.nodeType?xt.find.matchesSelector(i,t)?[i]:[]:xt.find.matches(t,xt.grep(e,function(t){return 1===t.nodeType}))},xt.fn.extend({find:function(t){var e,n,i=this.length,o=this;if("string"!=typeof t)return this.pushStack(xt(t).filter(function(){for(e=0;e)[^>]*|#([\w-]+))$/;(xt.fn.init=function(t,e,n){var i,o;if(!t)return this;if(n=n||kt,"string"==typeof t){if(!(i="<"===t[0]&&">"===t[t.length-1]&&3<=t.length?[null,t,null]:Pt.exec(t))||!i[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(i[1]){if(e=e instanceof xt?e[0]:e,xt.merge(this,xt.parseHTML(i[1],e&&e.nodeType?e.ownerDocument||e:st,!0)),Lt.test(i[1])&&xt.isPlainObject(e))for(i in e)yt(this[i])?this[i](e[i]):this.attr(i,e[i]);return this}return(o=st.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):yt(t)?n.ready!==undefined?n.ready(t):t(xt):xt.makeArray(t,this)}).prototype=xt.fn,kt=xt(st);var Dt=/^(?:parents|prev(?:Until|All))/,Ot={children:!0,contents:!0,next:!0,prev:!0};xt.fn.extend({has:function(t){var e=xt(t,this),n=e.length;return this.filter(function(){for(var t=0;t\x20\t\r\n\f]+)/i,Xt=/^$|^module$|\/(?:java|ecma)script/i,Qt={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};Qt.optgroup=Qt.option,Qt.tbody=Qt.tfoot=Qt.colgroup=Qt.caption=Qt.thead,Qt.th=Qt.td;var te,ee,ne=/<|&#?\w+;/;te=st.createDocumentFragment().appendChild(st.createElement("div")),(ee=st.createElement("input")).setAttribute("type","radio"),ee.setAttribute("checked","checked"),ee.setAttribute("name","t"),te.appendChild(ee),vt.checkClone=te.cloneNode(!0).cloneNode(!0).lastChild.checked,te.innerHTML="",vt.noCloneChecked=!!te.cloneNode(!0).lastChild.defaultValue;var ie=st.documentElement,oe=/^key/,re=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,se=/^([^.]*)(?:\.(.+)|)/;xt.event={global:{},add:function(e,t,n,i,o){var r,s,a,u,l,c,h,d,p,f,m,g=zt.get(e);if(g)for(n.handler&&(n=(r=n).handler,o=r.selector),o&&xt.find.matchesSelector(ie,o),n.guid||(n.guid=xt.guid++),(u=g.events)||(u=g.events={}),(s=g.handle)||(s=g.handle=function(t){return void 0!==xt&&xt.event.triggered!==t.type?xt.event.dispatch.apply(e,arguments):undefined}),l=(t=(t||"").match(It)||[""]).length;l--;)p=m=(a=se.exec(t[l])||[])[1],f=(a[2]||"").split(".").sort(),p&&(h=xt.event.special[p]||{},p=(o?h.delegateType:h.bindType)||p,h=xt.event.special[p]||{},c=xt.extend({type:p,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&xt.expr.match.needsContext.test(o),namespace:f.join(".")},r),(d=u[p])||((d=u[p]=[]).delegateCount=0,h.setup&&!1!==h.setup.call(e,i,f,s)||e.addEventListener&&e.addEventListener(p,s)),h.add&&(h.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),o?d.splice(d.delegateCount++,0,c):d.push(c),xt.event.global[p]=!0)},remove:function(t,e,n,i,o){var r,s,a,u,l,c,h,d,p,f,m,g=zt.hasData(t)&&zt.get(t);if(g&&(u=g.events)){for(l=(e=(e||"").match(It)||[""]).length;l--;)if(p=m=(a=se.exec(e[l])||[])[1],f=(a[2]||"").split(".").sort(),p){for(h=xt.event.special[p]||{},d=u[p=(i?h.delegateType:h.bindType)||p]||[],a=a[2]&&new RegExp("(^|\\.)"+f.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=r=d.length;r--;)c=d[r],!o&&m!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||i&&i!==c.selector&&("**"!==i||!c.selector)||(d.splice(r,1),c.selector&&d.delegateCount--,h.remove&&h.remove.call(t,c));s&&!d.length&&(h.teardown&&!1!==h.teardown.call(t,f,g.handle)||xt.removeEvent(t,p,g.handle),delete u[p])}else for(p in u)xt.event.remove(t,p+e[l],n,i,!0);xt.isEmptyObject(u)&&zt.remove(t,"handle events")}},dispatch:function(t){var e,n,i,o,r,s,a=xt.event.fix(t),u=new Array(arguments.length),l=(zt.get(this,"events")||{})[a.type]||[],c=xt.event.special[a.type]||{};for(u[0]=a,e=1;e\x20\t\r\n\f]*)[^>]*)\/>/gi,ue=/\s*$/g;xt.extend({htmlPrefilter:function(t){return t.replace(ae,"<$1>")},clone:function(t,e,n){var i,o,r,s,a=t.cloneNode(!0),u=xt.contains(t.ownerDocument,t);if(!(vt.noCloneChecked||1!==t.nodeType&&11!==t.nodeType||xt.isXMLDoc(t)))for(s=b(a),i=0,o=(r=b(t)).length;i").prop({charset:n.scriptCharset,src:n.url}).on("load error",o=function(t){i.remove(),o=null,t&&e("error"===t.type?404:200,t.type)}),st.head.appendChild(i[0])},abort:function(){o&&o()}}});var Qe,tn=[],en=/(=)\?(?=&|$)|\?\?/;xt.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var t=tn.pop()||xt.expando+"_"+Ne++;return this[t]=!0,t}}),xt.ajaxPrefilter("json jsonp",function(t,e,n){var i,o,r,s=!1!==t.jsonp&&(en.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&en.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=yt(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(en,"$1"+i):!1!==t.jsonp&&(t.url+=(Re.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return r||xt.error(i+" was not called"),r[0]},t.dataTypes[0]="json",o=E[i],E[i]=function(){r=arguments},n.always(function(){o===undefined?xt(E).removeProp(i):E[i]=o,t[i]&&(t.jsonpCallback=e.jsonpCallback,tn.push(i)),r&&yt(o)&&o(r[0]),r=o=undefined}),"script"}),vt.createHTMLDocument=((Qe=st.implementation.createHTMLDocument("").body).innerHTML="
",2===Qe.childNodes.length),xt.parseHTML=function(t,e,n){return"string"!=typeof t?[]:("boolean"==typeof e&&(n=e,e=!1),e||(vt.createHTMLDocument?((i=(e=st.implementation.createHTMLDocument("")).createElement("base")).href=st.location.href,e.head.appendChild(i)):e=st),r=!n&&[],(o=Lt.exec(t))?[e.createElement(o[1])]:(o=x([t],e,r),r&&r.length&&xt(r).remove(),xt.merge([],o.childNodes)));var i,o,r},xt.fn.load=function(t,e,n){var i,o,r,s=this,a=t.indexOf(" ");return-1").append(xt.parseHTML(t)).find(i):t)}).always(n&&function(t,e){s.each(function(){n.apply(this,r||[t.responseText,e,t])})}),this},xt.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(t,e){xt.fn[e]=function(t){return this.on(e,t)}}),xt.expr.pseudos.animated=function(e){return xt.grep(xt.timers,function(t){return e===t.elem}).length},xt.offset={setOffset:function(t,e,n){var i,o,r,s,a,u,l=xt.css(t,"position"),c=xt(t),h={};"static"===l&&(t.style.position="relative"),a=c.offset(),r=xt.css(t,"top"),u=xt.css(t,"left"),("absolute"===l||"fixed"===l)&&-1<(r+u).indexOf("auto")?(s=(i=c.position()).top,o=i.left):(s=parseFloat(r)||0,o=parseFloat(u)||0),yt(e)&&(e=e.call(t,n,xt.extend({},a))),null!=e.top&&(h.top=e.top-a.top+s),null!=e.left&&(h.left=e.left-a.left+o),"using"in e?e.using.call(t,h):c.css(h)}},xt.fn.extend({offset:function(e){if(arguments.length)return e===undefined?this:this.each(function(t){xt.offset.setOffset(this,e,t)});var t,n,i=this[0];return i?i.getClientRects().length?(t=i.getBoundingClientRect(),n=i.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var t,e,n,i=this[0],o={top:0,left:0};if("fixed"===xt.css(i,"position"))e=i.getBoundingClientRect();else{for(e=this.offset(),n=i.ownerDocument,t=i.offsetParent||n.documentElement;t&&(t===n.body||t===n.documentElement)&&"static"===xt.css(t,"position");)t=t.parentNode;t&&t!==i&&1===t.nodeType&&((o=xt(t).offset()).top+=xt.css(t,"borderTopWidth",!0),o.left+=xt.css(t,"borderLeftWidth",!0))}return{top:e.top-o.top-xt.css(i,"marginTop",!0),left:e.left-o.left-xt.css(i,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent;t&&"static"===xt.css(t,"position");)t=t.offsetParent;return t||ie})}}),xt.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,o){var r="pageYOffset"===o;xt.fn[e]=function(t){return Mt(this,function(t,e,n){var i;if(_t(t)?i=t:9===t.nodeType&&(i=t.defaultView),n===undefined)return i?i[o]:t[e];i?i.scrollTo(r?i.pageXOffset:n,r?n:i.pageYOffset):t[e]=n},e,t,arguments.length)}}),xt.each(["top","left"],function(t,n){xt.cssHooks[n]=M(vt.pixelPosition,function(t,e){if(e)return e=R(t,n),he.test(e)?xt(t).position()[n]+"px":e})}),xt.each({ +Height:"height",Width:"width"},function(s,a){xt.each({padding:"inner"+s,content:a,"":"outer"+s},function(i,r){xt.fn[r]=function(t,e){var n=arguments.length&&(i||"boolean"!=typeof t),o=i||(!0===t||!0===e?"margin":"border");return Mt(this,function(t,e,n){var i;return _t(t)?0===r.indexOf("outer")?t["inner"+s]:t.document.documentElement["client"+s]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+s],i["scroll"+s],t.body["offset"+s],i["offset"+s],i["client"+s])):n===undefined?xt.css(t,e,o):xt.style(t,e,n,o)},a,n?t:undefined,n)}})}),xt.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(t,n){xt.fn[n]=function(t,e){return 0=i.clientWidth&&n>=i.clientHeight}),h=0s[p]&&(t.offsets.popper[h]+=a[h]+f-s[p]),t.offsets.popper=w(t.offsets.popper);var m=a[h]+a[l]/2-f/2,g=b(t.instance.popper),v=parseFloat(g["margin"+c],10),y=parseFloat(g["border"+c+"Width"],10),_=m-t.offsets.popper[h]-v-y;return _=Math.max(Math.min(s[l]-f,_),0),t.arrowElement=i,t.offsets.arrow=(ft(n={},h,Math.round(_)),ft(n,d,""),n),t}function G(t){return"end"===t?"start":"start"===t?"end":t}function J(t,e){var n=1o(i.left)||"right"===g&&o(n.left)o(i.top)||"bottom"===g&&o(n.top)o(m.right),u=o(n.top)o(m.bottom),c="left"===g&&s||"right"===g&&a||"top"===g&&u||"bottom"===g&&l,h=-1!==["top","bottom"].indexOf(g),d=!!f.flipVariations&&(h&&"start"===y&&s||h&&"end"===y&&a||!h&&"start"===y&&u||!h&&"end"===y&&l);(r||c||d)&&(p.flipped=!0,(r||c)&&(g=_[e+1]),d&&(y=G(y)),p.placement=g+(y?"-"+y:""),p.offsets.popper=mt({},p.offsets.popper,P(p.instance.popper,p.offsets.reference,p.placement)),p=O(p.instance.modifiers,p,"flip"))}),p}function $(t){var e=t.offsets,n=e.popper,i=e.reference,o=t.placement.split("-")[0],r=Math.floor,s=-1!==["top","bottom"].indexOf(o),a=s?"right":"bottom",u=s?"left":"top",l=s?"width":"height";return n[a]r(i[a])&&(t.offsets.popper[u]=r(i[a])),t}function X(t,e,n,i){var o=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),r=+o[1],s=o[2];if(!r)return t;if(0===s.indexOf("%")){var a=void 0;switch(s){case"%p":a=n;break;case"%":case"%r":default:a=i}return w(a)[e]/100*r}if("vh"===s||"vw"===s){return("vh"===s?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*r}return r}function Q(t,o,r,e){var s=[0,0],a=-1!==["right","left"].indexOf(e),n=t.split(/(\+|\-)/).map(function(t){return t.trim()}),i=n.indexOf(D(n,function(t){return-1!==t.search(/,|\s/)}));n[i]&&-1===n[i].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var u=/\s*,\s*|\s+/,l=-1!==i?[n.slice(0,i).concat([n[i].split(u)[0]]),[n[i].split(u)[1]].concat(n.slice(i+1))]:[n];return(l=l.map(function(t,e){var n=(1===e?!a:a)?"height":"width",i=!1;return t.reduce(function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,i=!0,t):i?(t[t.length-1]+=e,i=!1,t):t.concat(e)},[]).map(function(t){return X(t,n,o,r)})})).forEach(function(n,i){n.forEach(function(t,e){z(t)&&(s[i]+=t*("-"===n[e-1]?-1:1))})}),s}function tt(t,e){var n=e.offset,i=t.placement,o=t.offsets,r=o.popper,s=o.reference,a=i.split("-")[0],u=void 0;return u=z(+n)?[+n,0]:Q(n,r,s,a),"left"===a?(r.top+=u[0],r.left-=u[1]):"right"===a?(r.top+=u[0],r.left+=u[1]):"top"===a?(r.left+=u[0],r.top-=u[1]):"bottom"===a&&(r.left+=u[0],r.top+=u[1]),t.popper=r,t}function et(t,i){var e=i.boundariesElement||y(t.instance.popper);t.instance.reference===e&&(e=y(e));var o=C(t.instance.popper,t.instance.reference,i.padding,e);i.boundaries=o;var n=i.priority,r=t.offsets.popper,s={primary:function(t){var e=r[t];return r[t]o[t]&&!i.escapeWithReference&&(n=Math.min(r[e],o[t]-("right"===t?r.width:r.height))),ft({},e,n)}};return n.forEach(function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";r=mt({},r,s[e](t))}),t.offsets.popper=r,t}function nt(t){var e=t.placement,n=e.split("-")[0],i=e.split("-")[1];if(i){var o=t.offsets,r=o.reference,s=o.popper,a=-1!==["bottom","top"].indexOf(n),u=a?"left":"top",l=a?"width":"height",c={start:ft({},u,r[u]),end:ft({},u,r[u]+r[l]-s[l])};t.offsets.popper=mt({},s,c[i])}return t}function it(t){if(!Z(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=D(t.instance.modifiers,function(t){return"preventOverflow"===t.name}).boundaries;if(e.bottomn.right||e.top>n.bottom||e.rightthis._items.length-1||t<0))if(this._isSliding)P(this._element).one(q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!($t={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"}),selector:!(Yt={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"}),placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},Qt={SHOW:"show",OUT:"out"},te={HIDE:"hide"+Zt,HIDDEN:"hidden"+Zt,SHOW:"show"+Zt,SHOWN:"shown"+Zt,INSERTED:"inserted"+Zt,CLICK:"click"+Zt,FOCUSIN:"focusin"+Zt,FOCUSOUT:"focusout"+Zt,MOUSEENTER:"mouseenter"+Zt,MOUSELEAVE:"mouseleave"+Zt},ee={FADE:"fade",SHOW:"show"},ne={TOOLTIP:".tooltip",TOOLTIP_INNER:".tooltip-inner",ARROW:".arrow"},ie={HOVER:"hover",FOCUS:"focus",CLICK:"click",MANUAL:"manual"},oe=function(){function i(t,e){if(void 0===c)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=Wt(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),Wt(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(Wt(this.getTipElement()).hasClass(ee.SHOW))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),Wt.removeData(this.element,this.constructor.DATA_KEY),Wt(this.element).off(this.constructor.EVENT_KEY),Wt(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&Wt(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===Wt(this.element).css("display"))throw new Error("Please use show on visible elements");var t=Wt.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){Wt(this.element).trigger(t);var n=Wt.contains(this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!n)return;var i=this.getTipElement(),o=Ve.getUID(this.constructor.NAME);i.setAttribute("id",o),this.element.setAttribute("aria-describedby",o),this.setContent(),this.config.animation&&Wt(i).addClass(ee.FADE);var r="function"==typeof this.config.placement?this.config.placement.call(this,i,this.element):this.config.placement,s=this._getAttachment(r);this.addAttachmentClass(s);var a=!1===this.config.container?document.body:Wt(this.config.container);Wt(i).data(this.constructor.DATA_KEY,this),Wt.contains(this.element.ownerDocument.documentElement,this.tip)||Wt(i).appendTo(a),Wt(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new c(this.element,i,{placement:s,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:ne.ARROW},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),Wt(i).addClass(ee.SHOW),"ontouchstart"in document.documentElement&&Wt(document.body).children().on("mouseover",null,Wt.noop);var u=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,Wt(e.element).trigger(e.constructor.Event.SHOWN),t===Qt.OUT&&e._leave(null,e)};if(Wt(this.tip).hasClass(ee.FADE)){var l=Ve.getTransitionDurationFromElement(this.tip);Wt(this.tip).one(Ve.TRANSITION_END,u).emulateTransitionEnd(l)}else u()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=Wt.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==Qt.SHOW&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),Wt(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(Wt(this.element).trigger(i),!i.isDefaultPrevented()){if(Wt(n).removeClass(ee.SHOW),"ontouchstart"in document.documentElement&&Wt(document.body).children().off("mouseover",null,Wt.noop),this._activeTrigger[ie.CLICK]=!1,this._activeTrigger[ie.FOCUS]=!1,this._activeTrigger[ie.HOVER]=!1,Wt(this.tip).hasClass(ee.FADE)){var r=Ve.getTransitionDurationFromElement(n);Wt(n).one(Ve.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){Wt(this.getTipElement()).addClass(Gt+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||Wt(this.config.template)[0],this.tip},t.setContent=function(){var t=Wt(this.getTipElement());this.setElementContent(t.find(ne.TOOLTIP_INNER),this.getTitle()),t.removeClass(ee.FADE+" "+ee.SHOW)},t.setElementContent=function(t,e){var n=this.config.html;"object"==typeof e&&(e.nodeType||e.jquery)?n?Wt(e).parent().is(t)||t.empty().append(e):t.text(Wt(e).text()):t[n?"html":"text"](e)},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getAttachment=function(t){return $t[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)Wt(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==ie.MANUAL){var e=t===ie.HOVER?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===ie.HOVER?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;Wt(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}Wt(i.element).closest(".modal").on("hide.bs.modal",function(){return i.hide()})}),this.config.selector?this.config=a({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||Wt(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),Wt(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?ie.FOCUS:ie.HOVER]=!0),Wt(e.getTipElement()).hasClass(ee.SHOW)||e._hoverState===Qt.SHOW?e._hoverState=Qt.SHOW:(clearTimeout(e._timeout),e._hoverState=Qt.SHOW,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===Qt.SHOW&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||Wt(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),Wt(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?ie.FOCUS:ie.HOVER]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=Qt.OUT,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===Qt.OUT&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){return"number"==typeof(t=a({},this.constructor.Default,Wt(this.element).data(),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),Ve.typeCheckConfig(qt,t,this.constructor.DefaultType),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=Wt(this.getTipElement()),e=t.attr("class").match(Jt);null!==e&&0

'}),fe=a({},$e.DefaultType,{content:"(string|element|function)"}),me={FADE:"fade",SHOW:"show"},ge={TITLE:".popover-header",CONTENT:".popover-body"},ve={HIDE:"hide"+le,HIDDEN:"hidden"+le,SHOW:"show"+le,SHOWN:"shown"+le,INSERTED:"inserted"+le,CLICK:"click"+le,FOCUSIN:"focusin"+le,FOCUSOUT:"focusout"+le,MOUSEENTER:"mouseenter"+le,MOUSELEAVE:"mouseleave"+le},ye=function(t){function i(){return t.apply(this,arguments)||this}n(i,t);var e=i.prototype;return e.isWithContent=function(){return this.getTitle()||this._getContent()},e.addAttachmentClass=function(t){re(this.getTipElement()).addClass(he+"-"+t)},e.getTipElement=function(){return this.tip=this.tip||re(this.config.template)[0],this.tip},e.setContent=function(){var t=re(this.getTipElement());this.setElementContent(t.find(ge.TITLE),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(ge.CONTENT),e),t.removeClass(me.FADE+" "+me.SHOW)},e._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},e._cleanTipClass=function(){var t=re(this.getTipElement()),e=t.attr("class").match(de);null!==e&&0=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"},qe=function(){function i(t){this._element=t}var t=i.prototype;return t.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&Ie(this._element).hasClass(He.ACTIVE)||Ie(this._element).hasClass(He.DISABLED))){var t,i,e=Ie(this._element).closest(We.NAV_LIST_GROUP)[0],o=Ve.getSelectorFromElement(this._element);if(e){var r="UL"===e.nodeName?We.ACTIVE_UL:We.ACTIVE;i=(i=Ie.makeArray(Ie(e).find(r)))[i.length-1]}var s=Ie.Event(ze.HIDE,{relatedTarget:this._element}),a=Ie.Event(ze.SHOW,{relatedTarget:i});if(i&&Ie(i).trigger(s),Ie(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(t=Ie(o)[0]),this._activate(this._element,e);var u=function(){var t=Ie.Event(ze.HIDDEN,{relatedTarget:n._element}),e=Ie.Event(ze.SHOWN,{relatedTarget:i});Ie(i).trigger(t),Ie(n._element).trigger(e)};t?this._activate(t,t.parentNode,u):u()}}},t.dispose=function(){Ie.removeData(this._element,Me),this._element=null},t._activate=function(t,e,n){var i=this,o=("UL"===e.nodeName?Ie(e).find(We.ACTIVE_UL):Ie(e).children(We.ACTIVE))[0],r=n&&o&&Ie(o).hasClass(He.FADE),s=function(){return i._transitionComplete(t,o,n)};if(o&&r){var a=Ve.getTransitionDurationFromElement(o);Ie(o).one(Ve.TRANSITION_END,s).emulateTransitionEnd(a)}else s()},t._transitionComplete=function(t,e,n){if(e){Ie(e).removeClass(He.SHOW+" "+He.ACTIVE);var i=Ie(e.parentNode).find(We.DROPDOWN_ACTIVE_CHILD)[0];i&&Ie(i).removeClass(He.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(Ie(t).addClass(He.ACTIVE),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),Ve.reflow(t),Ie(t).addClass(He.SHOW),t.parentNode&&Ie(t.parentNode).hasClass(He.DROPDOWN_MENU)){var o=Ie(t).closest(We.DROPDOWN)[0];o&&Ie(o).find(We.DROPDOWN_TOGGLE).addClass(He.ACTIVE),t.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var t=Ie(this),e=t.data(Me);if(e||(e=new i(this),t.data(Me,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return Re}}]),i}(),Ie(document).on(ze.CLICK_DATA_API,We.DATA_TOGGLE,function(t){t.preventDefault(),qe._jQueryInterface.call(Ie(this),"show")}),Ie.fn[Ne]=qe._jQueryInterface,Ie.fn[Ne].Constructor=qe,Ie.fn[Ne].noConflict=function(){return Ie.fn[Ne]=Fe,qe._jQueryInterface},qe);!function(t){if(void 0===t)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=t.fn.jquery.split(" ")[0].split("."),n=1,i=2,o=9,r=1,s=4;if(e[0]=s)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(e),t.Util=Ve,t.Alert=Ue,t.Button=Ze,t.Carousel=Ke,t.Collapse=Ge,t.Dropdown=Je,t.Modal=Ye,t.Popover=Xe,t.Scrollspy=Qe,t.Tab=tn,t.Tooltip=$e,Object.defineProperty(t,"__esModule",{value:!0})}),function(){this.Turbolinks={supported:null!=window.history.pushState&&null!=window.requestAnimationFrame&&null!=window.addEventListener,visit:function(t,e){return Turbolinks.controller.visit(t,e)},clearCache:function(){return Turbolinks.controller.clearCache()},setProgressBarDelay:function(t){return Turbolinks.controller.setProgressBarDelay(t)}}}.call(this),function(){var n,i,u,t,e,o,r,s,a,l=[].slice;Turbolinks.copyObject=function(t){var e,n,i;for(e in n={},t)i=t[e],n[e]=i;return n},Turbolinks.closest=function(t,e){return n.call(t,e)},n=null!=(a=document.documentElement.closest)?a:function(t){var e;for(e=this;e;){if(e.nodeType===Node.ELEMENT_NODE&&i.call(e,t))return e;e=e.parentNode}},Turbolinks.defer=function(t){return setTimeout(t,1)},Turbolinks.throttle=function(n){var i;return i=null,function(){var t,e;return t=1<=arguments.length?l.call(arguments,0):[],null!=i?i:i=requestAnimationFrame((e=this,function(){return i=null,n.apply(e,t)}))}},Turbolinks.dispatch=function(t,e){var n,i,o,r,s,a;return a=(s=null!=e?e:{}).target,n=s.cancelable,i=s.data,(o=document.createEvent("Events")).initEvent(t,!0,!0===n),o.data=null!=i?i:{},o.cancelable&&!u&&(r=o.preventDefault,o.preventDefault=function(){return this.defaultPrevented||Object.defineProperty(this,"defaultPrevented",{get:function(){return!0}}),r.call(this)}),(null!=a?a:document).dispatchEvent(o),o},(s=document.createEvent("Events")).initEvent("test",!0,!0),s.preventDefault(),u=s.defaultPrevented,Turbolinks.match=function(t,e){return i.call(t,e)},i=null!=(e=null!=(o=null!=(r=(t=document.documentElement).matchesSelector)?r:t.webkitMatchesSelector)?o:t.msMatchesSelector)?e:t.mozMatchesSelector,Turbolinks.uuid=function(){var t,e,n;for(n="",t=e=1;e<=36;t=++e)n+=9===t||14===t||19===t||24===t?"-":15===t?"4":20===t?(Math.floor(4*Math.random())+8).toString(16):Math.floor(15*Math.random()).toString(16);return n}}.call(this),function(){Turbolinks.Location=function(){function t(t){var e,n;null==t&&(t=""),(n=document.createElement("a")).href=t.toString(),this.absoluteURL=n.href,(e=n.hash.length)<2?this.requestURL=this.absoluteURL:(this.requestURL=this.absoluteURL.slice(0,-e),this.anchor=n.hash.slice(1))}var e,n,i,o;return t.wrap=function(t){return t instanceof this?t:new this(t)},t.prototype.getOrigin=function(){return this.absoluteURL.split("/",3).join("/")},t.prototype.getPath=function(){var t,e;return null!=(t=null!=(e=this.requestURL.match(/\/\/[^\/]*(\/[^?;]*)/))?e[1]:void 0)?t:"/"},t.prototype.getPathComponents=function(){return this.getPath().split("/").slice(1)},t.prototype.getLastPathComponent=function(){return this.getPathComponents().slice(-1)[0]},t.prototype.getExtension=function(){var t,e;return null!=(t=null!=(e=this.getLastPathComponent().match(/\.[^.]*$/))?e[0]:void 0)?t:""},t.prototype.isHTML=function(){return this.getExtension().match(/^(?:|\.(?:htm|html|xhtml))$/)},t.prototype.isPrefixedBy=function(t){var e;return e=n(t),this.isEqualTo(t)||o(this.absoluteURL,e)},t.prototype.isEqualTo=function(t){return this.absoluteURL===(null!=t?t.absoluteURL:void 0)},t.prototype.toCacheKey=function(){return this.requestURL},t.prototype.toJSON=function(){return this.absoluteURL},t.prototype.toString=function(){return this.absoluteURL},t.prototype.valueOf=function(){return this.absoluteURL},n=function(t){return e(t.getOrigin()+t.getPath())},e=function(t){return i(t,"/")?t:t+"/"},o=function(t,e){return t.slice(0,e.length)===e},i=function(t,e){return t.slice(-e.length)===e},t}()}.call(this),function(){var i=function(t,e){return function(){return t.apply(e,arguments)}};Turbolinks.HttpRequest=function(){function t(t,e,n){this.delegate=t,this.requestCanceled=i(this.requestCanceled,this),this.requestTimedOut=i(this.requestTimedOut,this),this.requestFailed=i(this.requestFailed,this),this.requestLoaded=i(this.requestLoaded,this),this.requestProgressed=i(this.requestProgressed,this),this.url=Turbolinks.Location.wrap(e).requestURL,this.referrer=Turbolinks.Location.wrap(n).absoluteURL,this.createXHR()}return t.NETWORK_FAILURE=0,t.TIMEOUT_FAILURE=-1,t.timeout=60,t.prototype.send=function(){var t;return this.xhr&&!this.sent?(this.notifyApplicationBeforeRequestStart(),this.setProgress(0),this.xhr.send(),this.sent=!0,"function"==typeof(t=this.delegate).requestStarted?t.requestStarted():void 0):void 0},t.prototype.cancel=function(){return this.xhr&&this.sent?this.xhr.abort():void 0},t.prototype.requestProgressed=function(t){return t.lengthComputable?this.setProgress(t.loaded/t.total):void 0},t.prototype.requestLoaded=function(){return this.endRequest((e=this,function(){var t;return 200<=(t=e.xhr.status)&&t<300?e.delegate.requestCompletedWithResponse(e.xhr.responseText,e.xhr.getResponseHeader("Turbolinks-Location")):(e.failed=!0,e.delegate.requestFailedWithStatusCode(e.xhr.status,e.xhr.responseText))}));var e},t.prototype.requestFailed=function(){return this.endRequest((t=this,function(){return t.failed=!0,t.delegate.requestFailedWithStatusCode(t.constructor.NETWORK_FAILURE)}));var t},t.prototype.requestTimedOut=function(){return this.endRequest((t=this,function(){return t.failed=!0,t.delegate.requestFailedWithStatusCode(t.constructor.TIMEOUT_FAILURE)}));var t},t.prototype.requestCanceled=function(){return this.endRequest()},t.prototype.notifyApplicationBeforeRequestStart=function(){return Turbolinks.dispatch("turbolinks:request-start",{data:{url:this.url,xhr:this.xhr}})},t.prototype.notifyApplicationAfterRequestEnd=function(){return Turbolinks.dispatch("turbolinks:request-end",{data:{url:this.url,xhr:this.xhr}})},t.prototype.createXHR=function(){return this.xhr=new XMLHttpRequest,this.xhr.open("GET",this.url,!0),this.xhr.timeout=1e3*this.constructor.timeout,this.xhr.setRequestHeader("Accept","text/html, application/xhtml+xml"),this.xhr.setRequestHeader("Turbolinks-Referrer",this.referrer),this.xhr.onprogress=this.requestProgressed,this.xhr.onload=this.requestLoaded,this.xhr.onerror=this.requestFailed,this.xhr.ontimeout=this.requestTimedOut,this.xhr.onabort=this.requestCanceled},t.prototype.endRequest=function(t){return this.xhr?(this.notifyApplicationAfterRequestEnd(),null!=t&&t.call(this),this.destroy()):void 0},t.prototype.setProgress=function(t){var e;return this.progress=t,"function"==typeof(e=this.delegate).requestProgressed?e.requestProgressed(this.progress):void 0},t.prototype.destroy=function(){var t;return this.setProgress(1),"function"==typeof(t=this.delegate).requestFinished&&t.requestFinished(),this.delegate=null,this.xhr=null},t}()}.call(this),function(){var n=function(t,e){return function(){return t.apply(e,arguments)}};Turbolinks.ProgressBar=function(){function t(){this.trickle=n(this.trickle,this),this.stylesheetElement=this.createStylesheetElement(),this.progressElement=this.createProgressElement()}var e;return e=300,t.defaultCSS=".turbolinks-progress-bar {\n position: fixed;\n display: block;\n top: 0;\n left: 0;\n height: 3px;\n background: #0076ff;\n z-index: 9999;\n transition: width "+e+"ms ease-out, opacity "+e/2+"ms "+e/2+"ms ease-in;\n transform: translate3d(0, 0, 0);\n}",t.prototype.show=function(){return this.visible?void 0:(this.visible=!0,this.installStylesheetElement(),this.installProgressElement(),this.startTrickling())},t.prototype.hide=function(){return this.visible&&!this.hiding?(this.hiding=!0,this.fadeProgressElement((t=this,function(){return t.uninstallProgressElement(),t.stopTrickling(),t.visible=!1,t.hiding=!1}))):void 0;var t},t.prototype.setValue=function(t){return this.value=t,this.refresh()},t.prototype.installStylesheetElement=function(){return document.head.insertBefore(this.stylesheetElement,document.head.firstChild)},t.prototype.installProgressElement=function(){return this.progressElement.style.width=0,this.progressElement.style.opacity=1,document.documentElement.insertBefore(this.progressElement,document.body),this.refresh()},t.prototype.fadeProgressElement=function(t){return this.progressElement.style.opacity=0,setTimeout(t,1.5*e)},t.prototype.uninstallProgressElement=function(){return this.progressElement.parentNode?document.documentElement.removeChild(this.progressElement):void 0},t.prototype.startTrickling=function(){return null!=this.trickleInterval?this.trickleInterval:this.trickleInterval=setInterval(this.trickle,e)},t.prototype.stopTrickling=function(){return clearInterval(this.trickleInterval),this.trickleInterval=null},t.prototype.trickle=function(){return this.setValue(this.value+Math.random()/100)},t.prototype.refresh=function(){return requestAnimationFrame((t=this,function(){return t.progressElement.style.width=10+90*t.value+"%"}));var t},t.prototype.createStylesheetElement=function(){var t;return(t=document.createElement("style")).type="text/css",t.textContent=this.constructor.defaultCSS,t},t.prototype.createProgressElement=function(){var t;return(t=document.createElement("div")).className="turbolinks-progress-bar",t},t}()}.call(this),function(){var o=function(t,e){return function(){return t.apply(e,arguments)}};Turbolinks.BrowserAdapter=function(){function t(t){this.controller=t,this.showProgressBar=o(this.showProgressBar,this),this.progressBar=new Turbolinks.ProgressBar}var n,i,e;return e=Turbolinks.HttpRequest,n=e.NETWORK_FAILURE,i=e.TIMEOUT_FAILURE,t.prototype.visitProposedToLocationWithAction=function(t,e){return this.controller.startVisitToLocationWithAction(t,e)},t.prototype.visitStarted=function(t){return t.issueRequest(),t.changeHistory(),t.loadCachedSnapshot()},t.prototype.visitRequestStarted=function(t){return this.progressBar.setValue(0),t.hasCachedSnapshot()||"restore"!==t.action?this.showProgressBarAfterDelay():this.showProgressBar()},t.prototype.visitRequestProgressed=function(t){return this.progressBar.setValue(t.progress)},t.prototype.visitRequestCompleted=function(t){return t.loadResponse()},t.prototype.visitRequestFailedWithStatusCode=function(t,e){switch(e){case n:case i:return this.reload();default:return t.loadResponse()}},t.prototype.visitRequestFinished=function(){return this.hideProgressBar()},t.prototype.visitCompleted=function(t){return t.followRedirect()},t.prototype.pageInvalidated=function(){return this.reload()},t.prototype.showProgressBarAfterDelay=function(){return this.progressBarTimeout=setTimeout(this.showProgressBar,this.controller.progressBarDelay)},t.prototype.showProgressBar=function(){return this.progressBar.show()},t.prototype.hideProgressBar=function(){return this.progressBar.hide(),clearTimeout(this.progressBarTimeout)},t.prototype.reload=function(){return window.location.reload()},t}()}.call(this),function(){var e=function(t,e){return function(){return t.apply(e,arguments)}};Turbolinks.History=function(){function t(t){this.delegate=t,this.onPageLoad=e(this.onPageLoad,this),this.onPopState=e(this.onPopState,this)}return t.prototype.start=function(){return this.started?void 0:(addEventListener("popstate",this.onPopState,!1),addEventListener("load",this.onPageLoad,!1),this.started=!0)},t.prototype.stop=function(){return this.started?(removeEventListener("popstate",this.onPopState,!1),removeEventListener("load",this.onPageLoad,!1),this.started=!1):void 0},t.prototype.push=function(t,e){return t=Turbolinks.Location.wrap(t),this.update("push",t,e)},t.prototype.replace=function(t,e){return t=Turbolinks.Location.wrap(t),this.update("replace",t,e)},t.prototype.onPopState=function(t){var e,n,i,o;return this.shouldHandlePopState()&&(o=null!=(n=t.state)?n.turbolinks:void 0)?(e=Turbolinks.Location.wrap(window.location),i=o.restorationIdentifier,this.delegate.historyPoppedToLocationWithRestorationIdentifier(e,i)):void 0},t.prototype.onPageLoad=function(){return Turbolinks.defer((t=this,function(){return t.pageLoaded=!0}));var t},t.prototype.shouldHandlePopState=function(){return this.pageIsLoaded()},t.prototype.pageIsLoaded=function(){return this.pageLoaded||"complete"===document.readyState},t.prototype.update=function(t,e,n){var i;return i={turbolinks:{restorationIdentifier:n}},history[t+"State"](i,null,e)},t}()}.call(this),function(){Turbolinks.Snapshot=function(){function t(t){var e,n;n=t.head,e=t.body,this.head=null!=n?n:document.createElement("head"),this.body=null!=e?e:document.createElement("body")}return t.wrap=function(t){return t instanceof this?t:this.fromHTML(t)},t.fromHTML=function(t){var e;return(e=document.createElement("html")).innerHTML=t,this.fromElement(e)},t.fromElement=function(t){return new this({head:t.querySelector("head"),body:t.querySelector("body")})},t.prototype.clone=function(){return new t({head:this.head.cloneNode(!0),body:this.body.cloneNode(!0)})},t.prototype.getRootLocation=function(){var t,e;return e=null!=(t=this.getSetting("root"))?t:"/",new Turbolinks.Location(e)},t.prototype.getCacheControlValue=function(){return this.getSetting("cache-control")},t.prototype.getElementForAnchor=function(t){try{return this.body.querySelector("[id='"+t+"'], a[name='"+t+"']")}catch(e){}},t.prototype.hasAnchor=function(t){return null!=this.getElementForAnchor(t)},t.prototype.isPreviewable=function(){return"no-preview"!==this.getCacheControlValue()},t.prototype.isCacheable=function(){return"no-cache"!==this.getCacheControlValue()},t.prototype.isVisitable=function(){return"reload"!==this.getSetting("visit-control")},t.prototype.getSetting=function(t){var e,n;return null!=(e=(n=this.head.querySelectorAll("meta[name='turbolinks-"+t+"']"))[n.length-1])?e.getAttribute("content"):void 0},t}()}.call(this),function(){var r=[].slice;Turbolinks.Renderer=function(){function t(){}var n;return t.render=function(t,e){var n,i,o;return i=t,n=e,(o=function(t,e,n){n.prototype=t.prototype;var i=new n,o=t.apply(i,e);return Object(o)===o?o:i}(this,3<=arguments.length?r.call(arguments,2):[],function(){})).delegate=i,o.render(n),o},t.prototype.renderView=function(t){return this.delegate.viewWillRender(this.newBody),t(),this.delegate.viewRendered(this.newBody)},t.prototype.invalidateView=function(){return this.delegate.viewInvalidated()},t.prototype.createScriptElement=function(t){var e;return"false"===t.getAttribute("data-turbolinks-eval")?t:((e=document.createElement("script")).textContent=t.textContent,e.async=!1,n(e,t),e)},n=function(t,e){var n,i,o,r,s,a,u;for(a=[],n=0,i=(r=e.attributes).length;n element inside the element. This is probably not what you meant to do!\n\nLoad your application\u2019s JavaScript bundle inside the element instead.