Bar chart
This commit is contained in:
BIN
app/assets/.DS_Store
vendored
Normal file
BIN
app/assets/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
app/assets/javascripts/.DS_Store
vendored
Normal file
BIN
app/assets/javascripts/.DS_Store
vendored
Normal file
Binary file not shown.
@ -17,6 +17,7 @@ $(function() {
|
||||
|
||||
}
|
||||
|
||||
// GET ALL THE DATA ------------------------------------------------------------------------------
|
||||
minutes_array = _.map(working_times,function(item){return get_minutes(item)});
|
||||
maximum_minutes = _.max(minutes_array);
|
||||
var minutes_count = new Array(maximum_minutes + 1);
|
||||
@ -33,16 +34,9 @@ $(function() {
|
||||
|
||||
minutes_count[(maximum_minutes + 1)] = 0;
|
||||
//$('.graph-functions').html("<p></p>")
|
||||
//console.log(minutes_count) // THIS SHOWS THAT THE FINAL VALUES ARE 1 AND NOT ACTUALLY 0
|
||||
|
||||
// good to test at: localhost:3333/exercises/69/statistics
|
||||
|
||||
var width_ratio = .8;
|
||||
var height_ratio = .7; // percent of height
|
||||
//console.log(minutes_count); // THIS SHOWS THAT THE FINAL VALUES ARE 1 AND NOT ACTUALLY 0
|
||||
|
||||
|
||||
// currently sets as percentage of window width, however, unfortunately
|
||||
// is not yet responsive
|
||||
function getWidth() {
|
||||
if (self.innerHeight) {
|
||||
return self.innerWidth;
|
||||
@ -57,6 +51,19 @@ $(function() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// DRAW THE LINE GRAPH ------------------------------------------------------------------------------
|
||||
function draw_line_graph() {
|
||||
|
||||
// good to test at: localhost:3333/exercises/69/statistics
|
||||
|
||||
var width_ratio = .8;
|
||||
var height_ratio = .7; // percent of height
|
||||
|
||||
|
||||
// currently sets as percentage of window width, however, unfortunately
|
||||
// is not yet responsive
|
||||
|
||||
var margin = {top: 100, right: 20, bottom: 70, left: 70},//30,50
|
||||
width = (getWidth() * width_ratio) - margin.left - margin.right,
|
||||
height = (width * height_ratio) - margin.top - margin.bottom;
|
||||
@ -82,8 +89,13 @@ $(function() {
|
||||
.outerTickSize(0);
|
||||
|
||||
var line = d3.svg.line()
|
||||
.x(function(d,i) { return x(i); })
|
||||
.y(function(d) { return y(d/minutes_count[0]*100); });
|
||||
.x(function (d, i) {
|
||||
return x(i);
|
||||
})
|
||||
.y(function (d) {
|
||||
return y(d / minutes_count[0] * 100);
|
||||
});
|
||||
|
||||
|
||||
var svg = d3.select("#chart_1").append("svg") //PLACEMENT GOES HERE <---------------
|
||||
.attr("width", width + margin.left + margin.right)
|
||||
@ -91,14 +103,20 @@ $(function() {
|
||||
.append("g")
|
||||
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
|
||||
|
||||
x.domain(d3.extent(minutes_count, function(d,i) { return (i); }));
|
||||
y.domain(d3.extent(minutes_count, function(d) { return (d/minutes_count[0]*100); }));
|
||||
|
||||
x.domain(d3.extent(minutes_count, function (d, i) {
|
||||
return (i);
|
||||
}));
|
||||
y.domain(d3.extent(minutes_count, function (d) {
|
||||
return (d / minutes_count[0] * 100);
|
||||
}));
|
||||
|
||||
svg.append("g") //x axis
|
||||
.attr("class", "x axis")
|
||||
.attr("transform", "translate(0," + height + ")")
|
||||
.call(xAxis);
|
||||
|
||||
|
||||
svg.append("text")// x axis label
|
||||
.attr("class", "x axis")
|
||||
.attr("text-anchor", "middle")
|
||||
@ -137,12 +155,17 @@ $(function() {
|
||||
.attr("stroke", "black")
|
||||
.attr("stroke-width", 5)
|
||||
.attr("fill", "none")// end new
|
||||
.attr("d", line)//---
|
||||
.on("mousemove", mMove)//new again
|
||||
.append("title");
|
||||
|
||||
.attr("d", line);//---
|
||||
//.on("mousemove", mMove)//new again
|
||||
//.append("title");
|
||||
|
||||
function type(d) {
|
||||
d.frequency = +d.frequency;
|
||||
return d;
|
||||
}
|
||||
}
|
||||
|
||||
draw_line_graph();
|
||||
|
||||
// THIS SHOULD DISPLAY THE X AND Y VALUES BUT
|
||||
// THE RESULTS ARE WRONG AT THE END FOR SOME REASON
|
||||
@ -163,14 +186,146 @@ $(function() {
|
||||
|
||||
|
||||
|
||||
//svg.append("rect") // border
|
||||
// .attr("x", 0)
|
||||
// .attr("y", 0)
|
||||
// .attr("height", height)
|
||||
// .attr("width", width)
|
||||
// .style("stroke", "#229")
|
||||
// .style("fill", "none")
|
||||
// .style("stroke-width", 3);
|
||||
// DRAW THE SECOND GRAPH ------------------------------------------------------------------------------
|
||||
|
||||
//<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
|
||||
function draw_bar_graph() {
|
||||
var group_incrament = 10;
|
||||
var group_ranges = group_incrament;
|
||||
var minutes_array_for_bar = [];
|
||||
|
||||
do {
|
||||
var section_value = 0;
|
||||
for (var i = 0; i < minutes_array.length; i++) {
|
||||
if ((minutes_array[i] < group_ranges) && (minutes_array[i] >= (group_ranges - 10))) {
|
||||
section_value++;
|
||||
}
|
||||
}
|
||||
minutes_array_for_bar.push(section_value);
|
||||
group_ranges += 10;
|
||||
}
|
||||
while (group_ranges < maximum_minutes);
|
||||
|
||||
//console.log(minutes_array_for_bar); // this var used as the bars
|
||||
//minutes_array_for_bar = [39, 20, 28, 20, 39, 34, 26, 23, 16, 8];
|
||||
|
||||
var max_of_array = Math.max.apply(Math, minutes_array_for_bar);
|
||||
var min_of_array = Math.min.apply(Math, minutes_array_for_bar);
|
||||
|
||||
|
||||
var width_ratio = .8;
|
||||
var height_ratio = .7; // percent of height
|
||||
|
||||
var margin = {top: 100, right: 20, bottom: 70, left: 70},//30,50
|
||||
width = (getWidth() * width_ratio) - margin.left - margin.right,
|
||||
height = (width * height_ratio) - margin.top - margin.bottom;
|
||||
|
||||
var x = d3.scale.ordinal()
|
||||
.rangeRoundBands([0, width], .1);
|
||||
|
||||
var y = d3.scale.linear()
|
||||
.range([0,height-(margin.top + margin.bottom)]);
|
||||
|
||||
|
||||
var xAxis = d3.svg.axis()
|
||||
.scale(x)
|
||||
.orient("bottom");
|
||||
|
||||
|
||||
var yAxis = d3.svg.axis()
|
||||
.scale(d3.scale.linear().domain([0,max_of_array]).range([height,0]))//y
|
||||
.orient("left")
|
||||
.ticks(10)
|
||||
.innerTickSize(-width);
|
||||
|
||||
var tip = d3.tip()
|
||||
.attr('class', 'd3-tip')
|
||||
.offset([-10, 0])
|
||||
.html(function(d) {
|
||||
return "<strong>Students:</strong> <span style='color:orange'>" + d + "</span>";
|
||||
});
|
||||
|
||||
var svg = d3.select("#chart_2").append("svg")
|
||||
.attr("width", width + margin.left + margin.right)
|
||||
.attr("height", height + margin.top + margin.bottom)
|
||||
.append("g")
|
||||
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
|
||||
|
||||
svg.call(tip);
|
||||
|
||||
x.domain(minutes_array_for_bar.map(function (d, i) {
|
||||
i++;
|
||||
var high_side = i * group_incrament;
|
||||
var low_side = high_side - group_incrament;
|
||||
return (low_side+"-"+high_side);
|
||||
}));
|
||||
|
||||
y.domain(minutes_array_for_bar.map(function (d) {
|
||||
return (d);
|
||||
}));
|
||||
|
||||
svg.append("g")
|
||||
.attr("class", "x axis")
|
||||
.attr("transform", "translate(0," + height + ")")
|
||||
.call(xAxis);
|
||||
|
||||
svg.append("g")
|
||||
.attr("class", "y axis")
|
||||
.call(yAxis)
|
||||
.append("text")
|
||||
.attr("transform", "rotate(-90)")
|
||||
.attr("y", 6)
|
||||
.attr("dy", ".71em");
|
||||
//.style("text-anchor", "end")
|
||||
//.text("Students");
|
||||
|
||||
svg.append("text") // y axis label
|
||||
.attr("transform", "rotate(-90)")
|
||||
.attr("x", -height / 2)
|
||||
.attr("dy", "-3em")
|
||||
.style("text-anchor", "middle")
|
||||
.text("Students")
|
||||
.style('font-size', 14);
|
||||
|
||||
svg.append("text")// x axis label
|
||||
.attr("class", "x axis")
|
||||
.attr("text-anchor", "middle")
|
||||
.attr("x", width / 2)
|
||||
.attr("y", height)
|
||||
.attr("dy", ((height / 20) + 20) + 'px')
|
||||
.text("Working Time (Minutes)")
|
||||
.style('font-size', 14);
|
||||
|
||||
y = d3.scale.linear()
|
||||
.domain([(0),max_of_array])
|
||||
.range([0,height]);
|
||||
|
||||
|
||||
svg.selectAll(".bar")
|
||||
.data(minutes_array_for_bar)
|
||||
.enter().append("rect")
|
||||
.attr("class", "bar")
|
||||
.attr("x", function(d,i) { var bar_incriment = width/ minutes_array_for_bar.length;
|
||||
var bar_x = i * bar_incriment;
|
||||
return (bar_x)})
|
||||
.attr("width", x.rangeBand())
|
||||
.attr("y", function(d) { return height - y(d); })
|
||||
.attr("height", function(d) { return y(d); })
|
||||
.on('mouseover', tip.show)
|
||||
.on('mouseout', tip.hide);
|
||||
|
||||
svg.append("text")// Title
|
||||
.attr("class", "x axis")
|
||||
.attr("text-anchor", "middle")
|
||||
.attr("x", (width / 2))//+300)
|
||||
.attr("y", 0)
|
||||
.attr("dy", '-1.5em')
|
||||
.text("Distribution of Time Spent by Students")
|
||||
.style('font-size', 20)
|
||||
.style('text-decoration', 'underline');
|
||||
|
||||
}
|
||||
draw_bar_graph()
|
||||
|
||||
}
|
||||
|
||||
|
@ -38,3 +38,49 @@ input[type='file'] {
|
||||
div#chart_1 {
|
||||
background-color: #FAFAFA;
|
||||
}
|
||||
|
||||
div#chart_2 {
|
||||
background-color: #FAFAFA;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.bar {
|
||||
fill: orange;
|
||||
}
|
||||
|
||||
.bar:hover {
|
||||
fill: #ffd897;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.d3-tip {
|
||||
line-height: 1;
|
||||
font-weight: bold;
|
||||
padding: 12px;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
color: #fff;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/* Creates a small triangle extender for the tooltip */
|
||||
.d3-tip:after {
|
||||
box-sizing: border-box;
|
||||
display: inline;
|
||||
font-size: 10px;
|
||||
width: 100%;
|
||||
line-height: 1;
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
content: "\25BC";
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Style northward tooltips differently */
|
||||
.d3-tip.n:after {
|
||||
margin: -1px 0 0 0;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"
|
||||
h1 = @exercise
|
||||
|
||||
= row(label: '.participants', value: @exercise.users.distinct.count)
|
||||
@ -21,8 +22,10 @@ h1 = @exercise
|
||||
hr
|
||||
.hidden#data data-working-time=ActiveSupport::JSON.encode(working_time_array)
|
||||
div#chart_1
|
||||
.graph-functions
|
||||
hr
|
||||
div#chart_2
|
||||
hr
|
||||
.graph-functions
|
||||
.table-responsive
|
||||
table.table.table-striped.sortable
|
||||
thead
|
||||
|
21
config/action_mailer.yml
Normal file
21
config/action_mailer.yml
Normal file
@ -0,0 +1,21 @@
|
||||
default: &default
|
||||
default_options:
|
||||
from: codeocean@hpi.de
|
||||
delivery_method: :smtp
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
default_url_options:
|
||||
host: localhost
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
default_url_options:
|
||||
host: CHANGE_ME
|
||||
|
||||
test:
|
||||
<<: *default
|
||||
default_url_options:
|
||||
host: localhost
|
||||
port: 3000
|
||||
delivery_method: :test
|
19
config/code_ocean.yml
Normal file
19
config/code_ocean.yml
Normal file
@ -0,0 +1,19 @@
|
||||
default: &default
|
||||
flowr:
|
||||
enabled: false
|
||||
code_pilot:
|
||||
enabled: false
|
||||
|
||||
development:
|
||||
flowr:
|
||||
enabled: true
|
||||
url: http://example.org:3000/api/exceptioninfo?id=&lang=auto
|
||||
code_pilot:
|
||||
enabled: false
|
||||
url: //localhost:3000
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
test:
|
||||
<<: *default
|
18
config/database.yml
Normal file
18
config/database.yml
Normal file
@ -0,0 +1,18 @@
|
||||
default: &default
|
||||
adapter: postgresql
|
||||
encoding: unicode
|
||||
password:
|
||||
pool: 16
|
||||
username: postgres
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
database: code_ocean_development
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
database: code_ocean_production
|
||||
|
||||
test:
|
||||
<<: *default
|
||||
database: code_ocean_test
|
22
config/secrets.yml
Normal file
22
config/secrets.yml
Normal file
@ -0,0 +1,22 @@
|
||||
# Be sure to restart your server when you modify this file.
|
||||
|
||||
# Your secret key is used for verifying the integrity of signed cookies.
|
||||
# If you change this key, all old signed cookies will become invalid!
|
||||
|
||||
# Make sure the secret is at least 30 characters and all random,
|
||||
# no regular words or you'll be exposed to dictionary attacks.
|
||||
# You can use `rake secret` to generate a secure secret key.
|
||||
|
||||
# Make sure the secrets in this file are kept private
|
||||
# if you're sharing your code publicly.
|
||||
|
||||
development:
|
||||
secret_key_base: CHANGE_ME
|
||||
|
||||
test:
|
||||
secret_key_base: CHANGE_ME
|
||||
|
||||
# Do not keep production secrets in the repository,
|
||||
# instead read values from the environment.
|
||||
production:
|
||||
secret_key_base: CHANGE_ME
|
11
config/sendmail.yml
Normal file
11
config/sendmail.yml
Normal file
@ -0,0 +1,11 @@
|
||||
default: &default
|
||||
arguments: CHANGE_ME
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
test:
|
||||
<<: *default
|
14
config/smtp.yml
Normal file
14
config/smtp.yml
Normal file
@ -0,0 +1,14 @@
|
||||
default: &default
|
||||
address: CHANGE_ME
|
||||
password: CHANGE_ME
|
||||
port: CHANGE_ME
|
||||
user_name: CHANGE_ME
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
test:
|
||||
<<: *default
|
80267
log/development.log
Normal file
80267
log/development.log
Normal file
File diff suppressed because it is too large
Load Diff
2687
log/newrelic_agent.log
Normal file
2687
log/newrelic_agent.log
Normal file
File diff suppressed because it is too large
Load Diff
BIN
public/uploads/files/4/chai.ogg
Normal file
BIN
public/uploads/files/4/chai.ogg
Normal file
Binary file not shown.
BIN
public/uploads/files/5/devstories.mp4
Normal file
BIN
public/uploads/files/5/devstories.mp4
Normal file
Binary file not shown.
BIN
public/uploads/files/6/devstories.webm
Normal file
BIN
public/uploads/files/6/devstories.webm
Normal file
Binary file not shown.
BIN
public/uploads/files/7/poster.png
Normal file
BIN
public/uploads/files/7/poster.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 140 KiB |
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/base.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/base.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/comments.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/comments.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/editor.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/editor.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/exercises.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/exercises.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/flowrdata.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/flowrdata.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/forms.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/forms.css.scssc
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/statistics.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/4e92fbe06799251f013a46423e4385978868e230/statistics.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/58bcf9e07189b32917e61cc80e4f68da57d708c9/flash.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/58bcf9e07189b32917e61cc80e4f68da57d708c9/flash.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/016442020c5c4ee67e7d15cd238db3b0
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/016442020c5c4ee67e7d15cd238db3b0
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/02840934d6b1fcdc151d595f940ea832
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/02840934d6b1fcdc151d595f940ea832
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/029042eab728ea54a222d4d4c4d14cd6
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/029042eab728ea54a222d4d4c4d14cd6
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/02d90389328296cacf43ce1e9f1386c7
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/02d90389328296cacf43ce1e9f1386c7
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/03577ea0b8b73f642863fb17b2e1904e
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/03577ea0b8b73f642863fb17b2e1904e
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0514b148d9c5d447a82f7cdba3230df9
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0514b148d9c5d447a82f7cdba3230df9
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0644a12a5cef077a39f8c944284d11c5
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0644a12a5cef077a39f8c944284d11c5
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/067d5a3f626b0bd1e966ea314f0932b8
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/067d5a3f626b0bd1e966ea314f0932b8
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/068b1a3c348d10ab7e9b6f6ed3068163
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/068b1a3c348d10ab7e9b6f6ed3068163
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0692b420a92e30dc76d2aa4f99efcc48
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0692b420a92e30dc76d2aa4f99efcc48
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0884f38fef3a3b5bcfecb71527c8ae6d
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0884f38fef3a3b5bcfecb71527c8ae6d
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/097e6d294320caf5ff5d572fe022ce1c
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/097e6d294320caf5ff5d572fe022ce1c
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/09a546a1a9825b866cb73528cb288d16
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/09a546a1a9825b866cb73528cb288d16
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/09b33f4945108b2953d57427ed60327f
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/09b33f4945108b2953d57427ed60327f
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0a887def1ff56d76391f5c99a536dd49
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0a887def1ff56d76391f5c99a536dd49
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0ae098ff4945214db6ab478c758a9a6a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0ae098ff4945214db6ab478c758a9a6a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0b857953a87aee2d95e19d9ba1d70063
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0b857953a87aee2d95e19d9ba1d70063
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0c32bdbb669743dd2e32572b890b2452
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0c32bdbb669743dd2e32572b890b2452
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0c8d20985f820327d2783495101a562b
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0c8d20985f820327d2783495101a562b
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0e23e6ab3ba42c70e1608c047c0b8602
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0e23e6ab3ba42c70e1608c047c0b8602
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0e61884442638df1c33f70c2ba8e6f65
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0e61884442638df1c33f70c2ba8e6f65
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0f4349538cf08442f1518382ac4a740d
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0f4349538cf08442f1518382ac4a740d
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/10ce5476fb6f22c659d3af2c27c51967
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/10ce5476fb6f22c659d3af2c27c51967
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/10fa44b81729635eb1dd2bc8798182c8
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/10fa44b81729635eb1dd2bc8798182c8
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/11d8b89da4cedb083836ca95043e73b4
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/11d8b89da4cedb083836ca95043e73b4
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/120718a6ee528b44d179c5dedce24971
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/120718a6ee528b44d179c5dedce24971
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/121faf7b0a90b0ae6ec594371ac120bd
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/121faf7b0a90b0ae6ec594371ac120bd
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/126ce42d498bda2c59964b3a26393402
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/126ce42d498bda2c59964b3a26393402
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/12c1f83e810bb6b45c364fb284072a3b
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/12c1f83e810bb6b45c364fb284072a3b
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1338eb966caa214717570c32177bb80e
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1338eb966caa214717570c32177bb80e
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/13554244d82e046c6382e1f33b4b1488
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/13554244d82e046c6382e1f33b4b1488
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/139d4429a20be3009aa624f96fcd5f45
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/139d4429a20be3009aa624f96fcd5f45
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/13ba91912d225841b67390892074b087
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/13ba91912d225841b67390892074b087
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/13fa933321f017223ba39c1d8f6fad69
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/13fa933321f017223ba39c1d8f6fad69
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1454ffb2fb5289acf32856b0e7d4b4dd
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1454ffb2fb5289acf32856b0e7d4b4dd
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/153508608c191ebacc1caaf2328562b5
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/153508608c191ebacc1caaf2328562b5
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/156fd91744af9d7fd04b5530d7427e11
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/156fd91744af9d7fd04b5530d7427e11
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/169715c4cf720c34b470219c18008816
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/169715c4cf720c34b470219c18008816
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/17770e48e139c01cff5caca0a210cafb
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/17770e48e139c01cff5caca0a210cafb
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1927b9c800c8495d84fdfffa84fac332
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1927b9c800c8495d84fdfffa84fac332
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1a0fb55fb10eb4838670bcd7e72ec846
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1a0fb55fb10eb4838670bcd7e72ec846
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1a84f448c050f94e1f3edaa2eb4e3f21
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1a84f448c050f94e1f3edaa2eb4e3f21
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1a976876ae262c8fd550a817ad66a0db
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1a976876ae262c8fd550a817ad66a0db
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1b2fbeea0d9fd66031ec847e6a48d9af
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1b2fbeea0d9fd66031ec847e6a48d9af
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1b7184ffe2dc28b328350a80c977907b
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1b7184ffe2dc28b328350a80c977907b
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1ba44c3a9bff0b8b997016381d9886f1
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1ba44c3a9bff0b8b997016381d9886f1
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1bbc1b8f020dc4eab5b82bfbe18efc8b
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1bbc1b8f020dc4eab5b82bfbe18efc8b
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1bc2361e889bf2f48d38bf4e93aba442
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1bc2361e889bf2f48d38bf4e93aba442
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1bf19a9236fb510d2c93b96f00aff647
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1bf19a9236fb510d2c93b96f00aff647
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1d57410d002d7e98f310f33153e3484d
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1d57410d002d7e98f310f33153e3484d
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1d64536c462d17556d5c66581ef5aed6
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1d64536c462d17556d5c66581ef5aed6
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1f046ad67b98e73576106282602e2010
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1f046ad67b98e73576106282602e2010
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/20677389cadac4739ed87557039b6876
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/20677389cadac4739ed87557039b6876
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/20d70c3eb56b8a7917e9a4500f56499f
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/20d70c3eb56b8a7917e9a4500f56499f
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/2194975e5af138dbef8d30215bbe9d8a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/2194975e5af138dbef8d30215bbe9d8a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/219dfff0a013aa84a41c797ab684ba99
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/219dfff0a013aa84a41c797ab684ba99
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/223623b9d9ea4ac5df2d7802611fee66
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/223623b9d9ea4ac5df2d7802611fee66
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/23054e2f80a7a67b7b12da08a176a219
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/23054e2f80a7a67b7b12da08a176a219
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/230a13f886b565bcaafdcf6f8abc51de
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/230a13f886b565bcaafdcf6f8abc51de
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/2351f15d7ec317f4c153d5ef03563554
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/2351f15d7ec317f4c153d5ef03563554
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/237e99029bb3bab30c72c3eaeeb40164
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/237e99029bb3bab30c72c3eaeeb40164
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/239f4d7bc54f865eae22f713c4b6a356
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/239f4d7bc54f865eae22f713c4b6a356
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/23fcc8afe2e52f9eaf625030afabfc90
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/23fcc8afe2e52f9eaf625030afabfc90
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/25b7774ff07bacfecfe8b64b676bbc64
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/25b7774ff07bacfecfe8b64b676bbc64
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/27620775513817510f0b75ce5be356d4
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/27620775513817510f0b75ce5be356d4
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/277aa094429c31298f7b25036e8844f2
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/277aa094429c31298f7b25036e8844f2
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/279cdaf8491757d1d742c42206502956
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/279cdaf8491757d1d742c42206502956
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/288c60871e3bfb991d950319c5d8f8a3
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/288c60871e3bfb991d950319c5d8f8a3
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/297303a4e4cab1395ca709705795c544
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/297303a4e4cab1395ca709705795c544
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/29f2348ad7fd91f1aabe6160f392819f
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/29f2348ad7fd91f1aabe6160f392819f
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/2ab4b6edc1dcab5e9a03187695b00f24
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/2ab4b6edc1dcab5e9a03187695b00f24
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/2b802392f1006992e7bf12fe14711c63
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/2b802392f1006992e7bf12fe14711c63
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/2cb39dedc18afcb12d82eb104cfcb20c
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/2cb39dedc18afcb12d82eb104cfcb20c
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user